diff options
author | thomascube <thomas@roundcube.net> | 2012-02-02 22:18:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-02 22:18:10 +0000 |
commit | 43875379d5fcfc4e4d29e2edcbbed614a2050f7d (patch) | |
tree | 2679484edd2b05012c56eb01d6bfc8ff67916328 /program/steps/settings/save_prefs.inc | |
parent | fd6f6e27c4c727c1485674147e997eb9ce6118d6 (diff) |
Allow users to choose cols for contacts list sorting
Diffstat (limited to 'program/steps/settings/save_prefs.inc')
-rw-r--r-- | program/steps/settings/save_prefs.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/settings/save_prefs.inc b/program/steps/settings/save_prefs.inc index 88a05486a..87d06ef3e 100644 --- a/program/steps/settings/save_prefs.inc +++ b/program/steps/settings/save_prefs.inc @@ -97,6 +97,7 @@ switch ($CURR_SECTION) $a_user_prefs = array( 'default_addressbook' => get_input_value('_default_addressbook', RCUBE_INPUT_POST, true), 'autocomplete_single' => isset($_POST['_autocomplete_single']) ? TRUE : FALSE, + 'addressbook_sort_col' => get_input_value('_addressbook_sort_col', RCUBE_INPUT_POST), 'addressbook_pagesize' => is_numeric($_POST['_addressbook_pagesize']) ? max(2, intval($_POST['_addressbook_pagesize'])) : $CONFIG['addressbook_pagesize'], ); |