diff options
author | Marcus Boerger <helly@php.net> | 2003-08-31 11:38:31 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-31 11:38:31 +0000 |
commit | fb4a63a07df6b2cf28960223c997fa88b94c8ce9 (patch) | |
tree | 51601cdc765550823cef5c3e0e93c95dda9f4237 | |
parent | 8376b7eff787e14e649177b2471493e9a95c7a7a (diff) | |
download | php-git-fb4a63a07df6b2cf28960223c997fa88b94c8ce9.tar.gz |
Synch error message with other one to fix tests
-rw-r--r-- | Zend/zend_execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index fcf91034bd..ae957a726a 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2500,7 +2500,7 @@ int zend_do_fcall_common_helper(ZEND_OPCODE_HANDLER_ARGS) zend_bool should_change_scope; if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) { - zend_error(E_ERROR, "Abstract method %s::%s called", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name); + zend_error(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name); NEXT_OPCODE(); /* Never reached */ } |