diff options
| -rw-r--r-- | ext/standard/dl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c index 68d0c667e8..4d25471192 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -77,7 +77,7 @@ PHP_FUNCTION(dl) convert_to_string_ex(file); if (!PG(enable_dl)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Dynamically loaded extentions aren't enabled"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Dynamically loaded extensions aren't enabled"); } else if (PG(safe_mode)) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Dynamically loaded extensions aren't allowed when running in Safe Mode"); } else { |
