diff options
author | Andrei Zmievski <andrei@php.net> | 2002-12-30 18:30:50 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2002-12-30 18:30:50 +0000 |
commit | 4f8c44b091cb533d244fdc3968a7520b388baea4 (patch) | |
tree | 752061b9493644450b4f924f486ab39eeb8d4676 /Zend | |
parent | 33f364b5fcb9e71ef3383f390b49f66872aabdb6 (diff) | |
download | php-git-4f8c44b091cb533d244fdc3968a7520b388baea4.tar.gz |
Adjust the error message.
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 41012d4e82..e0099920bb 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -518,7 +518,7 @@ int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *fun /* TBI!! new object handlers */ if (Z_TYPE_PP(object_pp) == IS_OBJECT) { if (!IS_ZEND_STD_OBJECT(**object_pp)) { - zend_error(E_WARNING, "Cannot use call_user_function on overloaded objects"); + zend_error(E_WARNING, "Cannot use call_user_function on objects without a class entry"); return FAILURE; } |