From b373fd4b3db8dfc141d6def66ed1cf97aa5e486a Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 19 Jan 2011 08:43:56 -0500 Subject: [PATCH] - Fix setting timezone in Preferences (#1487705) --- CHANGELOG | 1 + program/steps/settings/func.inc | 1 - program/steps/settings/save_prefs.inc | 2 ++ 3 files changed, 3 insertions(+), 1 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0d929f9..3661147 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ - Fix %h/%z variables in username_domain option (#1487701) - Workaround for setting charset in case of malformed bodystructure response (#1487700) - Fix impossible to subscribe to protected folders (#1487656) +- Fix setting timezone in Preferences (#1487705) RELEASE 0.5 ----------- diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 9eebdbe..7f4e282 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -756,7 +756,6 @@ return $skins; } - // register UI objects $OUTPUT->add_handlers(array( 'prefsframe' => 'rcmail_preferences_frame', diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 4d8bbf5..64aeb5f 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -129,6 +129,8 @@ if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['pagesize'] > $CONFIG['max_pagesize'])) $a_user_prefs['pagesize'] = (int) $CONFIG['max_pagesize']; + $a_user_prefs['timezone'] = $_SESSION['timezone'] = (string) $a_user_prefs['timezone']; + break; case 'mailbox': -- Gitblit v1.9.1