X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/96707e02b8b24054e0827eaf169cc88504a1e78c..486d4f5ea5be5649cdbc478a9a9948af37e73366:/lib/settings.php diff --git a/lib/settings.php b/lib/settings.php index 2c3cb05..48fbd40 100644 --- a/lib/settings.php +++ b/lib/settings.php @@ -33,13 +33,12 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) { /* Jirafeau package */ define('JIRAFEAU_PACKAGE', 'Jirafeau'); -define('JIRAFEAU_VERSION', '2.0.0'); +define('JIRAFEAU_VERSION', '3.4.1'); /* Directories. */ define('VAR_FILES', $cfg['var_root'] . 'files/'); define('VAR_LINKS', $cfg['var_root'] . 'links/'); define('VAR_ASYNC', $cfg['var_root'] . 'async/'); -define('VAR_ALIAS', $cfg['var_root'] . 'alias/'); // helping variable to build absolute link to // root of the domain without handling the URL scheme @@ -66,3 +65,6 @@ define('JIRAFEAU_WEEK', 604800); // JIRAFEAU_DAY * 7 define('JIRAFEAU_MONTH', 2419200); // JIRAFEAU_WEEK * 4 define('JIRAFEAU_QUARTER', 7257600); // JIRAFEAU_MONTH * 3 define('JIRAFEAU_YEAR', 29030400); // JIRAFEAU_MONTH * 12 + +// set UTC as default timezone for all date/time functions +date_default_timezone_set ('UTC');