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: http://svn.automattic.com/wordpress/trunk@12145 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
795d034b4a
commit
c5fd618f70
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue