Hello internals,

  i already admitted that i had an oversight in my tons of patches while
going down the PHP 5.2 TODO list. Now i am really overwhelmed by the fact
that indeed people were pointing me to decisions. WOW, that must be a first.
I hope i can point others to decisions as well. Look at the todo's we have
for 5.2 and HEAD, there's a bunch of stuff we *decided* and i hope people
will take it the same when it comes to it. I must be living in a dreamworld
suddenly :-)   ((I am german))

Regarding E_STRICT ones i had it in there i am very sad that i had to remove
it. But i guess i gave my thoughts on that already enough place. :-))

best regards
marcus

Wednesday, May 17, 2006, 9:07:45 PM, you wrote:

> helly           Wed May 17 19:07:45 2006 UTC

>   Modified files:              (Branch: PHP_5_2)
>     /ZendEngine2        zend_errors.h 
>   Log:
>   - Fix oversight and drop E_STRICT in 5.x series
>   
>   
> http://cvs.php.net/viewcvs.cgi/ZendEngine2/zend_errors.h?r1=1.18.2.1.2.3&r2=1.18.2.1.2.4&diff_format=u
> Index: ZendEngine2/zend_errors.h
> diff -u ZendEngine2/zend_errors.h:1.18.2.1.2.3
> ZendEngine2/zend_errors.h:1.18.2.1.2.4
> --- ZendEngine2/zend_errors.h:1.18.2.1.2.3      Sun May 14 18:50:02 2006
> +++ ZendEngine2/zend_errors.h   Wed May 17 19:07:45 2006
> @@ -17,7 +17,7 @@
>     +----------------------------------------------------------------------+
>  */
>  
> -/* $Id: zend_errors.h,v 1.18.2.1.2.3 2006/05/14 18:50:02 helly Exp $ */
> +/* $Id: zend_errors.h,v 1.18.2.1.2.4 2006/05/17 19:07:45 helly Exp $ */
>  
>  #ifndef ZEND_ERRORS_H
>  #define ZEND_ERRORS_H
> @@ -36,7 +36,7 @@
>  #define E_STRICT                       (1<<11L)
>  #define E_RECOVERABLE_ERROR    (1<<12L)
>  
> -#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR |
> E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR |
> E_USER_WARNING | E_USER_NOTICE | E_STRICT | E_RECOVERABLE_ERROR)
> +#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR |
> E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR |
> E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR)
>  #define E_CORE (E_CORE_ERROR | E_CORE_WARNING)
>  
>  #endif /* ZEND_ERRORS_H */

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to