X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/a793f57ef018e623cd2c5f66a68f839e131fed7d..c3c7c86917d4c01c0cb2188dba77e4119788e81f:/lib/settings.php diff --git a/lib/settings.php b/lib/settings.php index fa7a732..621af0c 100644 --- a/lib/settings.php +++ b/lib/settings.php @@ -29,11 +29,18 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) { unset($cfgOriginal); } +// Setup debug mode +error_reporting(0); +if ($cfg['debug'] === true) +{ + error_reporting(E_ALL); +} + // Set constants /* Jirafeau package */ define('JIRAFEAU_PACKAGE', 'Jirafeau'); -define('JIRAFEAU_VERSION', '4.1.0'); +define('JIRAFEAU_VERSION', '4.2.0'); /* Directories. */ define('VAR_FILES', $cfg['var_root'] . 'files/');