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