summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Croft <david@php.net>2003-08-17 09:57:21 +0000
committerDavid Croft <david@php.net>2003-08-17 09:57:21 +0000
commit2a216c1f361662695f9f86d8b110f696c2965d54 (patch)
tree0e43ce5af366b8be767a47fe72424f4f10607eba
parent82050ae8bcb9a74037cb66d57449a293eeb16eb4 (diff)
downloadphp-git-2a216c1f361662695f9f86d8b110f696c2965d54.tar.gz
#typo
-rw-r--r--ext/standard/dl.c2
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 {