summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorDan Horrigan <dan@dhorrigan.com>2011-08-21 15:22:49 +0200
committerDan Horrigan <dan@dhorrigan.com>2011-08-21 15:22:49 +0200
commit15be8fc4f1289e464fc716a7ed4a50f647f70211 (patch)
tree3d5ea5373c69299cff069dc6c25fec25f442540c /index.php
parenta0672e1e1f8c5d633a4f0e985e3bcc876862933b (diff)
Changed the 'development' environment default error reporting to included E_STRICT errors. E_ALL does not include these errors.
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 f4ac11a72..7555158a5 100644
--- a/index.php
+++ b/index.php
@@ -33,7 +33,7 @@ if (defined('ENVIRONMENT'))
switch (ENVIRONMENT)
{
case 'development':
- error_reporting(E_ALL);
+ error_reporting(E_ALL | E_STRICT);
break;
case 'testing':