Follow-up r86113: define E_DEPRECATED for PHP 5.2
authorHappy-melon <happy-melon@users.mediawiki.org>
Mon, 18 Apr 2011 23:36:47 +0000 (23:36 +0000)
committerHappy-melon <happy-melon@users.mediawiki.org>
Mon, 18 Apr 2011 23:36:47 +0000 (23:36 +0000)
includes/GlobalFunctions.php

index c88c89a..ff59662 100644 (file)
@@ -1777,6 +1777,10 @@ function wfSuppressWarnings( $end = false ) {
                }
        } else {
                if ( !$suppressCount ) {
+                       // E_DEPRECATED is undefined in PHP 5.2
+                       if( !defined( 'E_DEPRECATED' ) ){
+                               define( 'E_DEPRECATED', 8192 );
+                       }
                        $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED ) );
                }
                ++$suppressCount;