MINOR Enable the highest level of error_reporting() in install, to be

consistent with Core.php
This commit is contained in:
Sean Harvey 2012-04-14 13:25:12 +12:00
parent f07258f3cf
commit 6405c44bc2

View File

@ -18,7 +18,9 @@
ini_set('mysql.connect_timeout', 5);
ini_set('max_execution_time', 0);
error_reporting(E_ALL ^ E_NOTICE);
// enable the highest level of error reporting during installation (same as Core.php in framework)
error_reporting(E_ALL | E_STRICT);
// Include environment files
$usingEnv = false;