diff options
author | Dan Horrigan <dan@dhorrigan.com> | 2011-08-21 15:34:02 +0200 |
---|---|---|
committer | Dan Horrigan <dan@dhorrigan.com> | 2011-08-21 15:34:02 +0200 |
commit | 0e95b8b04f40739a26f9c945e61cedc61f4fe6c1 (patch) | |
tree | 27bc7419d5d5e0a4273ce27a4690a673c6ae2af8 | |
parent | 15be8fc4f1289e464fc716a7ed4a50f647f70211 (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.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ if (defined('ENVIRONMENT')) switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL | E_STRICT); + error_reporting(-1); break; case 'testing': |