set default to dev so that errors are being displayed for new installations

This commit is contained in:
Claude 2016-09-01 08:18:55 +02:00
parent 2beab10eac
commit 0d92b313d4

View File

@ -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');
/*
*---------------------------------------------------------------