diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/download/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index c6106fc09f..00b8e2e656 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -668,7 +668,7 @@ function set_modified_headers($stamp, $browser) $last_load = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? strtotime(trim($_SERVER['HTTP_IF_MODIFIED_SINCE'])) : false; if ((strpos(strtolower($browser), 'msie 6.0') === false) && (strpos(strtolower($browser), 'msie 8.0') === false)) { - if ($last_load !== false && $last_load <= $stamp) + if ($last_load !== false && $last_load >= $stamp) { if (substr(strtolower(@php_sapi_name()),0,3) === 'cgi') { |