mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Enable the highest level of error_reporting() in install, to be
consistent with Core.php
This commit is contained in:
parent
f07258f3cf
commit
6405c44bc2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user