diff options
author | Pierre Joye <pajoye@php.net> | 2009-06-08 21:17:12 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-06-08 21:17:12 +0000 |
commit | a48b65d6f5fb844a32b7cd46808aeeb86565c20e (patch) | |
tree | 8763a028f4f9badc8a4e221793ee768fdfe21ed4 | |
parent | 3c624f108e82f483f5b612aaa6d92344406b197b (diff) | |
download | php-git-a48b65d6f5fb844a32b7cd46808aeeb86565c20e.tar.gz |
- typo
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
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; } |