Changeset 24288
- Timestamp:
- 05/17/2013 08:44:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/load.php
r23947 r24288 259 259 function wp_debug_mode() { 260 260 if ( WP_DEBUG ) { 261 // E_DEPRECATED is a core PHP constant in PHP 5.3. Don't define this yourself. 262 // 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 ); 261 error_reporting( E_ALL ); 267 262 268 263 if ( WP_DEBUG_DISPLAY )
Note: See TracChangeset
for help on using the changeset viewer.