Make WordPress Core


Ignore:
Timestamp:
01/04/2012 11:03:46 PM (11 years ago)
Author:
ryan
Message:

Clear strict notices for the walkers. fixes #19249

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/load.php

    r19611 r19679  
    261261        // E_DEPRECATED is a core PHP constant in PHP 5.3. Don't define this yourself.
    262262        // The two statements are equivalent, just one is for 5.3+ and for less than 5.3.
    263         if ( defined( 'E_DEPRECATED' ) )
    264             error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
    265         else
    266             error_reporting( E_ALL );
     263//      if ( defined( 'E_DEPRECATED' ) )
     264//          error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
     265//      else
     266            error_reporting( E_ALL | E_DEPRECATED | E_STRICT );
    267267
    268268        if ( WP_DEBUG_DISPLAY )
Note: See TracChangeset for help on using the changeset viewer.