X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/cadde9373fc63be94f5d835fa944a5a93862a31a..9d77c0fe903db4f4ab2e3c6b5d5fc956f58c227d:/lib/settings.php diff --git a/lib/settings.php b/lib/settings.php index 17df61e..c520412 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.0.0'); +define('JIRAFEAU_VERSION', '4.1.1'); /* Directories. */ define('VAR_FILES', $cfg['var_root'] . 'files/');