summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-12 11:47:24 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-12 11:47:24 +0000
commitd830edae04bb5a4f6a8cb7b1bad2175240811630 (patch)
treeb7d552fbcc8951a5e343fe59a37b2311929506d9
parent5cff7ffccdb6b6bf98877aa95ed7b3f3f3ee5bdd (diff)
downloadbrdo-d830edae04bb5a4f6a8cb7b1bad2175240811630.tar.gz
brdo-d830edae04bb5a4f6a8cb7b1bad2175240811630.tar.bz2
- Patch #78328 by Bart: fixed incorrect Etag
-rw-r--r--includes/bootstrap.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index f378ce9eb..873486d62 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -414,7 +414,7 @@ function drupal_page_header() {
if (($modified_since !== NULL || $none_match !== NULL) && $modified_since !== FALSE && $none_match !== FALSE) {
header('HTTP/1.1 304 Not Modified');
// All 304 responses must send an etag if the 200 response for the same object contained an etag
- header('Etag: $etag');
+ header("Etag: $etag");
exit();
}