Re: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_3) / zend_execute_API.c
[email protected] (Marcus Boerger)
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <[email protected]> |
Hello Antony,
there shouldn't be a reason to do this in 5.3 as starting with 5.2 we
support %v.
marcus
Sunday, March 9, 2008, 9:52:29 PM, you wrote:
> tony2001 Sun Mar 9 20:52:29 2008 UTC
> Modified files: (Branch: PHP_5_3)
> /ZendEngine2 zend_execute_API.c
> Log:
> %v -> %s, this is 5_3
>
>
> http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_execute_API.c?r1=1.331.2.20.2.24.2.27&r2=1.331.2.20.2.24.2.28&diff_format=u
> Index: ZendEngine2/zend_execute_API.c
> diff -u ZendEngine2/zend_execute_API.c:1.331.2.20.2.24.2.27
> ZendEngine2/zend_execute_API.c:1.331.2.20.2.24.2.28
> --- ZendEngine2/zend_execute_API.c:1.331.2.20.2.24.2.27 Tue Mar 4 11:43:51 2008
> +++ ZendEngine2/zend_execute_API.c Sun Mar 9 20:52:29 2008
> @@ -17,7 +17,7 @@
> +----------------------------------------------------------------------+
> */
>
> -/* $Id: zend_execute_API.c,v 1.331.2.20.2.24.2.27 2008/03/04 11:43:51 dmitry Exp $ */
> +/* $Id: zend_execute_API.c,v 1.331.2.20.2.24.2.28 2008/03/09 20:52:29 tony2001 Exp $ */
>
> #include <stdio.h>
> #include <signal.h>
> @@ -960,7 +960,7 @@
> 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);
Best regards,
Marcus