diff options
author | Antony Dovgal <tony2001@php.net> | 2006-04-20 22:49:20 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-04-20 22:49:20 +0000 |
commit | 32872b157e8bd76ab579625f7429a7b419bd10f3 (patch) | |
tree | 18d504a82901d2ddedaea59ce92b40b71082b3b8 /Zend/zend_execute_API.c | |
parent | 50e1a51e5cad146ff62171339298d0a16810427e (diff) | |
download | php-git-32872b157e8bd76ab579625f7429a7b419bd10f3.tar.gz |
there is no %v in 5_1
Diffstat (limited to 'Zend/zend_execute_API.c')
-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 ffa6b05504..71fe9d807e 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 %v::%v()", EX(function_state).function->common.scope->name, EX(function_state).function->common.function_name); + 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); } if (EX(function_state).function->common.fn_flags & ZEND_ACC_DEPRECATED) { zend_error(E_STRICT, "Function %s%s%s() is deprecated", |