diff options
author | thomascube <thomas@roundcube.net> | 2005-09-28 22:28:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-09-28 22:28:05 +0000 |
commit | 30233b8dfb7fe5070dfa11b3e6d2015fb50aa769 (patch) | |
tree | 46cf5db699d97802e7c408c00a62e72dc22c640f /program/steps/settings/save_prefs.inc | |
parent | 20a1b3a0e1a46266b149a23562bb71680e666edb (diff) |
Minor bugfixes and correction of confusing License notfications
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 1524b9ead..7cc327028 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | | PURPOSE: | | Save user preferences to DB and to the current session | @@ -28,6 +28,9 @@ $a_user_prefs['timezone'] = isset($_POST['_timezone']) ? (int)$_POST['_timezone' $a_user_prefs['pagesize'] = is_numeric($_POST['_pagesize']) ? (int)$_POST['_pagesize'] : $CONFIG['pagesize']; $a_user_prefs['prefer_html'] = isset($_POST['_prefer_html']) ? TRUE : FALSE; +// MM: Date format toggle (Pretty / Standard) +$a_user_prefs['prettydate'] = isset($_POST['_pretty_date']) ? TRUE : FALSE; + if (isset($_POST['_language'])) $sess_user_lang = $_SESSION['user_lang'] = $_POST['_language']; |