summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorDan Horrigan <dan@dhorrigan.com>2011-08-21 15:34:02 +0200
committerDan Horrigan <dan@dhorrigan.com>2011-08-21 15:34:02 +0200
commit0e95b8b04f40739a26f9c945e61cedc61f4fe6c1 (patch)
tree27bc7419d5d5e0a4273ce27a4690a673c6ae2af8 /index.php
parent15be8fc4f1289e464fc716a7ed4a50f647f70211 (diff)
Changed error reporting level to -1, which will show ALL PHP errors. This will future-proof the solution. Thanks @ericbarnes for pointing that out.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 7555158a5..899f4ce9b 100644
--- a/index.php
+++ b/index.php
@@ -33,7 +33,7 @@ if (defined('ENVIRONMENT'))
switch (ENVIRONMENT)
{
case 'development':
- error_reporting(E_ALL | E_STRICT);
+ error_reporting(-1);
break;
case 'testing':