summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-08-11 03:02:57 +0000
committerSVN Migration <svn@php.net>2006-08-11 03:02:57 +0000
commitefa64999fa3b0ba45dd7655b92949f0591094e7e (patch)
tree086a201e82f6b9c193c6f65331563f2d9a212595 /Zend/zend_execute_API.c
parent91b6eb5f5cde8166da47ce5d83c8071d80eea393 (diff)
downloadphp-git-php-5.1.5RC1.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_1_5RC1'.php-5.1.5RC1
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 71fe9d807e..ffa6b05504 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -819,7 +819,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
if (EX(function_state).function->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) {
if (EX(function_state).function->common.fn_flags & ZEND_ACC_ABSTRACT) {
- zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name);
+ zend_error_noreturn(E_ERROR, "Cannot call abstract method %v::%v()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name);
}
if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) {
zend_error(E_STRICT, "Function %s%s%s() is deprecated",