Enable developers to turn on notices from wp-config.php. Relates #3155. Fixes #5033 props Ozh.

git-svn-id: https://develop.svn.wordpress.org/trunk@6179 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2007-09-30 11:09:47 +00:00
parent 34fa3532e2
commit 4a591e0966
1 changed files with 6 additions and 2 deletions

View File

@ -95,8 +95,12 @@ function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(
}
timer_start();
// Change to E_ALL for development/debugging
error_reporting(E_ALL ^ E_NOTICE);
// Add define('WPDEBUG',true); to wp-config.php to enable display of notices during development.
if (defined('WPDEBUG') and WPDEBUG == true) {
error_reporting(E_ALL);
} else {
error_reporting(E_ALL ^ E_NOTICE);
}
// For an advanced caching plugin to use, static because you would only want one
if ( defined('WP_CACHE') )