- Fix add/remove columns in message list when message_sort_order isn't set (#1487751)

release-0.6
alecpl 14 years ago
parent 8c27d0032f
commit ae3d6065d8

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
- Fix add/remove columns in message list when message_sort_order isn't set (#1487751)
- Check mime headers before attempt to parse them (#1487745) - Check mime headers before attempt to parse them (#1487745)
- Quote header values in show_additional_headers plugin (#1487744) - Quote header values in show_additional_headers plugin (#1487744)
- Fix settings UI on IE 6 (#1487724) - Fix settings UI on IE 6 (#1487724)

@ -58,7 +58,7 @@ if (!empty($_GET['_page']))
if (!isset($_SESSION['sort_col'])) if (!isset($_SESSION['sort_col']))
$_SESSION['sort_col'] = $CONFIG['message_sort_col']; $_SESSION['sort_col'] = $CONFIG['message_sort_col'];
if (!isset($_SESSION['sort_order'])) if (!isset($_SESSION['sort_order']))
$_SESSION['sort_order'] = $CONFIG['message_sort_order']; $_SESSION['sort_order'] = strtoupper($CONFIG['message_sort_order']) == 'ASC' ? 'ASC' : 'DESC';
// set threads mode // set threads mode
$a_threading = $RCMAIL->config->get('message_threading', array()); $a_threading = $RCMAIL->config->get('message_threading', array());

Loading…
Cancel
Save