﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
5033	Better error_reporting and a debug mode	ozh	anonymous	"Following a discussion on wp-hackers in September, here is a proposition for a better error_reporting handling, and an optional debug mode (plugin) developers could activate on a per-blog basis

It would consist of the following:

in wp-settings.php:
{{{
if (defined('WPDEBUG') and WPDEBUG == true) {
   error_reporting(E_ALL);
} else {
   error_reporting(E_ALL ^ E_NOTICE);
}
}}}

Then, on wp-config.php for developers:
{{{
define('WPDEBUG', true);
}}}
"	enhancement	closed	normal	2.5	General		normal	fixed	has-patch 2nd-opinion early	
