summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-06-08 21:17:12 +0000
committerPierre Joye <pajoye@php.net>2009-06-08 21:17:12 +0000
commita48b65d6f5fb844a32b7cd46808aeeb86565c20e (patch)
tree8763a028f4f9badc8a4e221793ee768fdfe21ed4
parent3c624f108e82f483f5b612aaa6d92344406b197b (diff)
downloadphp-git-a48b65d6f5fb844a32b7cd46808aeeb86565c20e.tar.gz
- typo
-rw-r--r--Zend/zend_builtin_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index 9ac65f4324..d5a3461ec9 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -492,7 +492,7 @@ ZEND_FUNCTION(define)
found = zend_hash_find(EG(class_table), class_name, p - name + 1, (void **) &ce);
if (found != SUCCESS) {
- zend_error(E_WARNING, "Class '%s' does not exists", class_name);
+ zend_error(E_WARNING, "Class '%s' does not exist", class_name);
free_alloca_with_limit(class_name, use_heap);
RETURN_FALSE;
}