Set the code to production not development (suppresses PHP errors) (#965)

This commit is contained in:
FrancescoUK
2016-11-11 13:11:44 +00:00
parent 19165133ae
commit 123cb25bf5

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'] : 'development');
define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'production');
/*
*---------------------------------------------------------------