summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-29 13:44:39 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-09-29 13:44:39 +0000
commit57c60ddbe2e9107f10c873a8bf9b9f6de979194a (patch)
treeb1f0f8207273367be40edbe2b6c4a0638fa6186c /includes/common.inc
parent46e43ebed12729f42eb52f898f780a45102852b4 (diff)
downloadbrdo-57c60ddbe2e9107f10c873a8bf9b9f6de979194a.tar.gz
brdo-57c60ddbe2e9107f10c873a8bf9b9f6de979194a.tar.bz2
- Ick. Hit the backspace key before commiting. Undoing.
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 81f155b21..9a55b0847 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1173,7 +1173,7 @@ function drupal_page_header() {
$etag = '"'. md5($date) .'"';
// Check http headers:
- $modified_since = isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) ? $_SERVER["HTTP_IF_MODIFIED_SINCE"] == $date : NULL
+ $modified_since = isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) ? $_SERVER["HTTP_IF_MODIFIED_SINCE"] == $date : NULL;
$none_match = isset($_SERVER["HTTP_IF_NONE_MATCH"]) ? $_SERVER["HTTP_IF_NONE_MATCH"] == $etag : NULL;
// The type checking here is very important, be careful when changing entries.