1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00

%v -> %s, this is 5_3

This commit is contained in:
Antony Dovgal
2008-03-09 20:52:29 +00:00
parent 33e23bd355
commit 1f3b8cccc4

View File

@@ -960,7 +960,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
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_DEPRECATED, "Function %v%s%v() is deprecated",
zend_error(E_DEPRECATED, "Function %s%s%s() is deprecated",
EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "",
EX(function_state).function->common.scope ? "::" : "",
EX(function_state).function->common.function_name);