From 0d92b313d4b30c7ff70488bc0d926378c00c49a4 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 1 Sep 2016 08:18:55 +0200 Subject: [PATCH] set default to dev so that errors are being displayed for new installations --- htdocs/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/index.php b/htdocs/index.php index 85f0567..d27278b 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -53,7 +53,7 @@ * * NOTE: If you change these, also change the error_reporting() code below */ - define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'production'); + define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'development'); /* *---------------------------------------------------------------