diff options
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,12 +28,12 @@ * By default development will show errors but testing and live will hide them. */ -if (defined('ENVIRONMENT')) +if (false && defined('ENVIRONMENT')) { switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL ^ E_NOTICE); + error_reporting(E_ALL); break; case 'testing': |