From 0888d16f72211fb6ce5da12e579b036f50e161da Mon Sep 17 00:00:00 2001 From: skyhook19 Date: Fri, 7 Feb 2014 11:39:39 -0500 Subject: [PATCH] Update Standard.php Updated the default timezone to be the sever's default. Former-commit-id: 6f94356d9876ef7adb9b2ddd461bf13804a2d341 --- Core/Frameworks/Baikal/Model/Config/Standard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Frameworks/Baikal/Model/Config/Standard.php b/Core/Frameworks/Baikal/Model/Config/Standard.php index 6e97b8f..3b8ec33 100644 --- a/Core/Frameworks/Baikal/Model/Config/Standard.php +++ b/Core/Frameworks/Baikal/Model/Config/Standard.php @@ -61,7 +61,7 @@ class Standard extends \Baikal\Model\Config { # Default values protected $aData = array( - "PROJECT_TIMEZONE" => "Europe/Paris", + "PROJECT_TIMEZONE" => \date_default_timezone_get(), "BAIKAL_CARD_ENABLED" => TRUE, "BAIKAL_CAL_ENABLED" => TRUE, "BAIKAL_DAV_AUTH_TYPE" => "Digest", @@ -219,4 +219,4 @@ CODE; $sCode = trim($sCode); return $sCode; } -} \ No newline at end of file +}