diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-11 10:57:24 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-11 14:11:47 +0200 |
commit | af7264ab2b067f100342e68a25053ae8fb6bb5fa (patch) | |
tree | 7989168543dd9af67dd811002623f1cd91b2a878 /program/steps/mail/mark.inc | |
parent | 68b9f365b38fe68848eedf81a9eaad7810f51b0b (diff) |
Added separate From and To columns apart from smart From/To column (#1486891)
Diffstat (limited to 'program/steps/mail/mark.inc')
-rw-r--r-- | program/steps/mail/mark.inc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/program/steps/mail/mark.inc b/program/steps/mail/mark.inc index f165011ca..83bd7ab06 100644 --- a/program/steps/mail/mark.inc +++ b/program/steps/mail/mark.inc @@ -121,11 +121,8 @@ if (($uids = get_input_value('_uid', RCUBE_INPUT_POST)) && ($flag = get_input_va // add new rows from next page (if any) if ($count && $uids != '*' && ($jump_back || $nextpage_count > 0)) { - $sort_col = isset($_SESSION['sort_col']) ? $_SESSION['sort_col'] : $CONFIG['message_sort_col']; - $sort_order = isset($_SESSION['sort_order']) ? $_SESSION['sort_order'] : $CONFIG['message_sort_order']; - - $a_headers = $RCMAIL->storage->list_messages($mbox, NULL, $sort_col, $sort_order, - $jump_back ? NULL : $count); + $a_headers = $RCMAIL->storage->list_messages($mbox, NULL, + rcmail_sort_column(), rcmail_sort_order(), $jump_back ? NULL : $count); rcmail_js_message_list($a_headers, false); } |