commit | 0e95b8b04f40739a26f9c945e61cedc61f4fe6c1 | [log] [tgz] |
---|---|---|
author | Dan Horrigan <dan@dhorrigan.com> | Sun Aug 21 09:34:02 2011 -0400 |
committer | Dan Horrigan <dan@dhorrigan.com> | Sun Aug 21 09:34:02 2011 -0400 |
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.
diff --git a/index.php b/index.php index 7555158..899f4ce 100644 --- a/index.php +++ b/index.php
@@ -33,7 +33,7 @@ switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL | E_STRICT); + error_reporting(-1); break; case 'testing':