diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-12 11:47:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-12 11:47:24 +0000 |
commit | d830edae04bb5a4f6a8cb7b1bad2175240811630 (patch) | |
tree | b7d552fbcc8951a5e343fe59a37b2311929506d9 | |
parent | 5cff7ffccdb6b6bf98877aa95ed7b3f3f3ee5bdd (diff) | |
download | brdo-d830edae04bb5a4f6a8cb7b1bad2175240811630.tar.gz brdo-d830edae04bb5a4f6a8cb7b1bad2175240811630.tar.bz2 |
- Patch #78328 by Bart: fixed incorrect Etag
-rw-r--r-- | includes/bootstrap.inc | 2 |
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(); } |