Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -1777,6 +1777,10 @@ |
1778 | 1778 | } |
1779 | 1779 | } else { |
1780 | 1780 | if ( !$suppressCount ) { |
| 1781 | + // E_DEPRECATED is undefined in PHP 5.2 |
| 1782 | + if( !defined( 'E_DEPRECATED' ) ){ |
| 1783 | + define( 'E_DEPRECATED', 8192 ); |
| 1784 | + } |
1781 | 1785 | $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED ) ); |
1782 | 1786 | } |
1783 | 1787 | ++$suppressCount; |