From 5b50aa689ed04176a6ece7188a7589bee5de8061 Mon Sep 17 00:00:00 2001 From: Martynas Barzda Date: Mon, 29 Oct 2012 17:30:50 +0200 Subject: [PATCH] Install script: updated $system_timezone Get system timezone with date_default_timezone_get() function --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 5f98e54..f7a6142 100644 --- a/install.php +++ b/install.php @@ -11,7 +11,7 @@ if ( ! defined('MONSTRA_ACCESS')) define('MONSTRA_ACCESS', true); // Set default timezone - $system_timezone = 'Kwajalein'; + $system_timezone = date_default_timezone_get(); // Load bootstrap file require_once(ROOT . DS . 'monstra' . DS . 'bootstrap.php');