X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/871a40df8b73ce50251e2827c1e193902756ddac..989cb76f326b696484beb04ba5a4044f816de522:/lib/settings.php diff --git a/lib/settings.php b/lib/settings.php index 9bccc86..fa9efaa 100644 --- a/lib/settings.php +++ b/lib/settings.php @@ -29,11 +29,22 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) { unset($cfgOriginal); } +// Setup debug mode +if ($cfg['debug'] === true) +{ + @error_reporting(E_ALL); +} +else +{ + @error_reporting(0); +} + + // Set constants /* Jirafeau package */ define('JIRAFEAU_PACKAGE', 'Jirafeau'); -define('JIRAFEAU_VERSION', '4.1.1'); +define('JIRAFEAU_VERSION', '4.2.0'); /* Directories. */ define('VAR_FILES', $cfg['var_root'] . 'files/');