diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-09-29 13:44:39 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-09-29 13:44:39 +0000 |
commit | 57c60ddbe2e9107f10c873a8bf9b9f6de979194a (patch) | |
tree | b1f0f8207273367be40edbe2b6c4a0638fa6186c | |
parent | 46e43ebed12729f42eb52f898f780a45102852b4 (diff) | |
download | brdo-57c60ddbe2e9107f10c873a8bf9b9f6de979194a.tar.gz brdo-57c60ddbe2e9107f10c873a8bf9b9f6de979194a.tar.bz2 |
- Ick. Hit the backspace key before commiting. Undoing.
-rw-r--r-- | includes/common.inc | 2 |
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. |