]> granicus.if.org Git - php/commitdiff
%v -> %s, this is 5_3
authorAntony Dovgal <tony2001@php.net>
Sun, 9 Mar 2008 20:52:29 +0000 (20:52 +0000)
committerAntony Dovgal <tony2001@php.net>
Sun, 9 Mar 2008 20:52:29 +0000 (20:52 +0000)
Zend/zend_execute_API.c

index 2e31d5e1f58ba38baa736849311633fe059b8c14..95491966baa5cd703f4cac38428d69ec4980e42d 100644 (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);