summaryrefslogtreecommitdiff
path: root/program/steps
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-02-11 23:07:44 +0000
committerthomascube <thomas@roundcube.net>2008-02-11 23:07:44 +0000
commitddbdb8516b470a1451ea0d72647e3be44b50b330 (patch)
treefc39e2560b8cf328513dee87a65a19210b7b9ce1 /program/steps
parent2062baf07e252de2cf4cd8201097711e90837dc0 (diff)
Fix caching issue
Diffstat (limited to 'program/steps')
-rw-r--r--program/steps/mail/show.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc
index 9e9ba8df4..5cd5e8360 100644
--- a/program/steps/mail/show.inc
+++ b/program/steps/mail/show.inc
@@ -50,10 +50,10 @@ if ($_GET['_uid'])
$MESSAGE['is_safe'] = 1;
// calculate Etag for this request
- $etag = md5($MESSAGE['UID'].$IMAP->get_mailbox_name().session_id().intval($MESSAGE['headers']->mdn_sent).intval($PRINT_MODE));
+ $etag = md5($MESSAGE['UID'].$IMAP->get_mailbox_name().session_id().intval($MESSAGE['headers']->mdn_sent).intval($MESSAGE['is_safe']).intval($PRINT_MODE));
// allow caching, unless remote images are present
- if ((bool)get_input_value('_safe', RCUBE_INPUT_GET))
+ if ((bool)$MESSAGE['is_safe'])
send_nocacheing_headers();
else if (empty($CONFIG['devel_mode']))
send_modified_header($_SESSION['login_time'], $etag);