]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
[FEATURE] Set default timezone
authorDan Untenzu <untenzu@webit.de>
Wed, 22 Feb 2017 15:45:06 +0000 (16:45 +0100)
committerJerome Jutteau <jerome.jutteau@outscale.com>
Thu, 23 Feb 2017 17:34:20 +0000 (18:34 +0100)
Set UTC as default timezone for all date/time functions.

Dont rely on the servers timezone, since this timezone may
change on cloud hosts or may nit be set at all.

Using UTC is a best practice to avoid timezone issues etc.

Refs #73

lib/settings.php

index 2c3cb05a726f0dec60a9ffbac26effe00e33303f..85c124534e947afc9b7e47413d24a87d271fcae1 100644 (file)
@@ -66,3 +66,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');

patrick-canterino.de