kalle                                    Wed, 11 Aug 2010 21:18:45 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=302119

Log:
Seems like this one skipped the commit (E_ERROR -> E_CORE_ERROR) for 
zend.ze1_compatibility_mode (re #52570)

Bug: http://bugs.php.net/52570 (Assigned) register_globals on in php 5.3
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/main/main.c

Modified: php/php-src/branches/PHP_5_3/main/main.c
===================================================================
--- php/php-src/branches/PHP_5_3/main/main.c    2010-08-11 21:12:18 UTC (rev 
302118)
+++ php/php-src/branches/PHP_5_3/main/main.c    2010-08-11 21:18:45 UTC (rev 
302119)
@@ -2083,7 +2083,7 @@

                /* This is not too nice, but since its the only one theres no 
need for extra stuff here */
                if (cfg_get_long("zend.ze1_compatibility_mode", &val) == 
SUCCESS && val) {
-                       zend_error(E_ERROR, "zend.ze1_compatibility_mode is no 
longer supported in PHP 5.3 and greater");
+                       zend_error(E_CORE_ERROR, "zend.ze1_compatibility_mode 
is no longer supported in PHP 5.3 and greater");
                }
        }


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

Reply via email to