diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-12-15 16:02:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-12-15 16:02:50 +0000 |
commit | 5accfa08f52a31da74715c38a1d7a12793fa33c7 (patch) | |
tree | c4608737b446716a418a40f0ed21722195fedebd /includes | |
parent | 264f7d5667e83cf07c38b91cfd170e57f845a5f2 (diff) | |
download | brdo-5accfa08f52a31da74715c38a1d7a12793fa33c7.tar.gz brdo-5accfa08f52a31da74715c38a1d7a12793fa33c7.tar.bz2 |
- Patch #41133 by DriesK: as of PHP 5.1.0, strtotime() returns FALSE on failure instead of -1.
Changed code to be compatible with all versions.
Diffstat (limited to 'includes')
-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 34398c727..28681452a 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -599,7 +599,7 @@ function drupal_page_header() { // Check http headers: $modified_since = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] == $date : NULL; - if (!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) && ($timestamp = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])) != -1) { + if (!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) && ($timestamp = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])) > 0) { $modified_since = $cache->created <= $timestamp; } else { |