diff options
author | thomascube <thomas@roundcube.net> | 2012-01-04 12:47:50 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-04 12:47:50 +0000 |
commit | 5879c09ca046c483d4102f1dd21babfac1cd8057 (patch) | |
tree | 6b185e2b7b510d1e584c217351258703410ba6ff /program/steps/settings/save_prefs.inc | |
parent | 7645a0a107d57c3e0efb70fe3bef7df5b26ddef5 (diff) |
Use proper timezones from PHP's internal timezonedb (#1485592)
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 2e89ce1c0..36d401ed4 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -29,8 +29,7 @@ switch ($CURR_SECTION) case 'general': $a_user_prefs = array( 'language' => isset($_POST['_language']) ? get_input_value('_language', RCUBE_INPUT_POST) : $CONFIG['language'], - 'timezone' => isset($_POST['_timezone']) ? (is_numeric($_POST['_timezone']) ? floatval($_POST['_timezone']) : get_input_value('_timezone', RCUBE_INPUT_POST)) : $CONFIG['timezone'], - 'dst_active' => isset($_POST['_dst_active']) ? TRUE : FALSE, + 'timezone' => isset($_POST['_timezone']) ? get_input_value('_timezone', RCUBE_INPUT_POST) : $CONFIG['timezone'], 'date_format' => isset($_POST['_date_format']) ? get_input_value('_date_format', RCUBE_INPUT_POST) : $CONFIG['date_format'], 'time_format' => isset($_POST['_time_format']) ? get_input_value('_time_format', RCUBE_INPUT_POST) : ($CONFIG['time_format'] ? $CONFIG['time_format'] : 'H:i'), 'prettydate' => isset($_POST['_pretty_date']) ? TRUE : FALSE, |