- Fix message Etag generation for counter issues (#1485623)

release-0.6
alecpl 16 years ago
parent 011b02e75b
commit 59c027ba5f

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix message Etag generation for counter issues (#1485623)
- Fix messages searching on MailEnable IMAP (#1485762)
- Fixed many 'skip_deleted' issues (#1485634)
- Fixed messages list sorting on servers without SORT capability

@ -50,7 +50,10 @@ if ($_GET['_uid']) {
.intval($MESSAGE->headers->mdn_sent)
.intval($MESSAGE->is_safe)
.(!empty($MESSAGE->attachments) ? intval($CONFIG['inline_images']) : '')
.intval($PRINT_MODE));
.intval($PRINT_MODE)
.$_SESSION['sort_col'].$_SESSION['sort_order']
.$IMAP->messagecount($mbox_name, 'ALL', true)
);
// allow caching, unless remote images are present
if ((bool)$MESSAGE->is_safe)

Loading…
Cancel
Save