r86368 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r86367‎ | r86368 | r86369 >
Date:23:36, 18 April 2011
Author:happy-melon
Status:ok
Tags:
Comment:
Follow-up r86113: define E_DEPRECATED for PHP 5.2
Modified paths:
  • /trunk/phase3/includes/GlobalFunctions.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/GlobalFunctions.php
@@ -1777,6 +1777,10 @@
17781778 }
17791779 } else {
17801780 if ( !$suppressCount ) {
 1781+ // E_DEPRECATED is undefined in PHP 5.2
 1782+ if( !defined( 'E_DEPRECATED' ) ){
 1783+ define( 'E_DEPRECATED', 8192 );
 1784+ }
17811785 $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED ) );
17821786 }
17831787 ++$suppressCount;

Follow-up revisions

RevisionCommit summaryAuthorDate
r97445Minor whitespace fixes in GlobalFunctions.php...krinkle23:21, 18 September 2011

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r86113* added E_DEPRECATED into wfSupressWarnings...freakolowsky11:19, 15 April 2011

Status & tagging log