aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/download
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-11-21 09:14:07 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-11-21 09:14:07 +0000
commit10bc77397942f48430dd82b4f87034dddfdb03bd (patch)
tree4aeacf64c69e4c8c981d18ef8f11e5703dd114e7 /phpBB/download
parentf5cbd9ea0e408d5b0e6764ff167b260410acce81 (diff)
downloadforums-10bc77397942f48430dd82b4f87034dddfdb03bd.tar
forums-10bc77397942f48430dd82b4f87034dddfdb03bd.tar.gz
forums-10bc77397942f48430dd82b4f87034dddfdb03bd.tar.bz2
forums-10bc77397942f48430dd82b4f87034dddfdb03bd.tar.xz
forums-10bc77397942f48430dd82b4f87034dddfdb03bd.zip
#54245
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10282 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/download')
-rw-r--r--phpBB/download/file.php2
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')
{