summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-11 13:58:11 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-11 13:58:11 +0000
commit42857f68547fc2643a23346af3687b5a2c4f55f3 (patch)
treeef7ca46a8d1e6ddb07d5ba3c5d7e2cde803a593d /roundcubemail/program
parent51a8e15e1c0aad3644faf917edd48da258304973 (diff)
- Fix message Etag generation for counter issues (#1485623)
git-svn-id: https://svn.roundcube.net/trunk@2637 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/steps/mail/show.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/show.inc b/roundcubemail/program/steps/mail/show.inc
index 6ab5ba86a..39d2e1a6c 100644
--- a/roundcubemail/program/steps/mail/show.inc
+++ b/roundcubemail/program/steps/mail/show.inc
@@ -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)