diff options
author | thomascube <thomas@roundcube.net> | 2011-09-28 14:41:04 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-09-28 14:41:04 +0000 |
commit | f4f4354fea8095d0b328707abb83605bbb89d3fb (patch) | |
tree | 8919fb8d7b12732e8dbd8e71959d75efa212463a /program | |
parent | 985e410012f1a7937f4c7d0bbe2b9c0b1a40b693 (diff) |
This timezone stuff really is a hard one...
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_config.php | 2 |
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']); |