summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-09-28 14:41:04 +0000
committerthomascube <thomas@roundcube.net>2011-09-28 14:41:04 +0000
commitf4f4354fea8095d0b328707abb83605bbb89d3fb (patch)
tree8919fb8d7b12732e8dbd8e71959d75efa212463a
parent985e410012f1a7937f4c7d0bbe2b9c0b1a40b693 (diff)
This timezone stuff really is a hard one...
-rw-r--r--program/include/rcube_config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index 338e07e4b..01e678150 100644
--- a/program/include/rcube_config.php
+++ b/program/include/rcube_config.php
@@ -220,7 +220,7 @@ class rcube_config
// override timezone settings with client values
if ($this->prop['timezone'] == 'auto') {
$this->prop['_timezone_value'] = isset($_SESSION['timezone']) ? $_SESSION['timezone'] : $this->prop['_timezone_value'];
- $this->prop['dst_active'] = isset($_SESSION['dst_active']) ? $_SESSION['dst_active'] : $this->prop['dst_active'];
+ $this->prop['dst_active'] = $this->userprefs['dst_active'] = isset($_SESSION['dst_active']) ? $_SESSION['dst_active'] : $this->prop['dst_active'];
}
else if (isset($this->prop['_timezone_value']))
unset($this->prop['_timezone_value']);