When WP_DEBUG, set PHP error_reporting level to E_ALL. This will include E_DEPRECATED in PHP 5.3, and E_STRICT in PHP 5.4.
fixes #24357. git-svn-id: https://develop.svn.wordpress.org/trunk@24288 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fb72520209
commit
53a1416c34
|
@ -258,11 +258,6 @@ function timer_stop( $display = 0, $precision = 3 ) { // if called like timer_st
|
|||
*/
|
||||
function wp_debug_mode() {
|
||||
if ( WP_DEBUG ) {
|
||||
// E_DEPRECATED is a core PHP constant in PHP 5.3. Don't define this yourself.
|
||||
// The two statements are equivalent, just one is for 5.3+ and for less than 5.3.
|
||||
if ( defined( 'E_DEPRECATED' ) )
|
||||
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
|
||||
else
|
||||
error_reporting( E_ALL );
|
||||
|
||||
if ( WP_DEBUG_DISPLAY )
|
||||
|
|
Loading…
Reference in New Issue