derick          Sun Nov  6 06:09:33 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src    php.ini-dist php.ini-recommended 
  Log:
  - MFH: E_STRICT is not part of E_ALL, so the lines were wrong here.
  
  
http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.231.2.2&r2=1.231.2.3&ty=u
Index: php-src/php.ini-dist
diff -u php-src/php.ini-dist:1.231.2.2 php-src/php.ini-dist:1.231.2.3
--- php-src/php.ini-dist:1.231.2.2      Sat Sep 24 11:13:13 2005
+++ php-src/php.ini-dist        Sun Nov  6 06:09:32 2005
@@ -277,11 +277,11 @@
 ;
 ;   - Show all errors, except for notices and coding standards warnings
 ;
-;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
+;error_reporting = E_ALL & ~E_NOTICE
 ;
 ;   - Show all errors, except for notices
 ;
-;error_reporting = E_ALL & ~E_NOTICE
+;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
 ;
 ;   - Show only errors
 ;
@@ -289,7 +289,7 @@
 ;
 ;   - Show all errors except for notices and coding standards warnings
 ;
-error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT
+error_reporting  =  E_ALL & ~E_NOTICE
 
 ; Print out errors (as a part of the output).  For production web sites,
 ; you're strongly encouraged to turn this feature off, and use error logging
http://cvs.php.net/diff.php/php-src/php.ini-recommended?r1=1.179.2.3&r2=1.179.2.4&ty=u
Index: php-src/php.ini-recommended
diff -u php-src/php.ini-recommended:1.179.2.3 
php-src/php.ini-recommended:1.179.2.4
--- php-src/php.ini-recommended:1.179.2.3       Tue Nov  1 11:21:29 2005
+++ php-src/php.ini-recommended Sun Nov  6 06:09:32 2005
@@ -335,11 +335,11 @@
 ;
 ;   - Show all errors, except for notices and coding standards warnings
 ;
-;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
+;error_reporting = E_ALL & ~E_NOTICE
 ;
 ;   - Show all errors, except for notices
 ;
-;error_reporting = E_ALL & ~E_NOTICE
+;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
 ;
 ;   - Show only errors
 ;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to