diff options
author | thomascube <thomas@roundcube.net> | 2006-04-13 18:23:48 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-04-13 18:23:48 +0000 |
commit | 86f1721926af3b2b4ab0b82f9a0904ad3d2c0733 (patch) | |
tree | 0bf67f97a5c40446ecddcbbbc39f3b81166c3ce8 /config/main.inc.php.dist | |
parent | c1ba9587b52e788f0e9468b77aff3b54e276a6d6 (diff) |
Added sort order saving patch by Jacob Brunson
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index af27851b2..8a60bc6cd 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -128,12 +128,6 @@ $rcmail_config['trash_mbox'] = 'Trash'; // display these folders separately in the mailbox list $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); -// default sort col -$rcmail_config['message_sort_col'] = 'date'; - -// default sort order -$rcmail_config['message_sort_order'] = 'DESC'; - // Set TRUE if deleted messages should not be displayed // This will make the application run slower $rcmail_config['skip_deleted'] = FALSE; @@ -180,6 +174,12 @@ $rcmail_config['prefer_html'] = TRUE; // show pretty dates as standard $rcmail_config['prettydate'] = TRUE; +// default sort col +$rcmail_config['message_sort_col'] = 'date'; + +// default sort order +$rcmail_config['message_sort_order'] = 'DESC'; + /***** try to load host-specific configuration *****/ |