Disable error reporting in setup-config.php. It doesn't load wp-settings.php so error reporting is not properly setup. fixes #11084

git-svn-id: https://develop.svn.wordpress.org/trunk@12145 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-11-05 18:01:57 +00:00
parent 9bea8a1abb
commit f3aae9bc00
1 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,14 @@
*/
define('WP_INSTALLING', true);
/**
* Disable error reporting
*
* Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) f
or debugging
*/
error_reporting(0);
/**#@+
* These three defines are required to allow us to use require_wp_db() to load
* the database class while being wp-content/db.php aware.