From 86f1721926af3b2b4ab0b82f9a0904ad3d2c0733 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 13 Apr 2006 14:23:48 -0400 Subject: [PATCH] Added sort order saving patch by Jacob Brunson --- 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 af27851..8a60bc6 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -128,12 +128,6 @@ // 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 @@ // 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 *****/ -- Gitblit v1.9.1