aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-04-27 23:24:22 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-06-12 20:22:45 +0530
commit8f733cc658e20da74e910f3e36edcfdf86a7eba3 (patch)
tree8427ea4f9947faa31e9447675abd3f666dd43d1f /phpBB
parent5ebebbd7190fb5e541df9956b5d58983765d931b (diff)
downloadforums-8f733cc658e20da74e910f3e36edcfdf86a7eba3.tar
forums-8f733cc658e20da74e910f3e36edcfdf86a7eba3.tar.gz
forums-8f733cc658e20da74e910f3e36edcfdf86a7eba3.tar.bz2
forums-8f733cc658e20da74e910f3e36edcfdf86a7eba3.tar.xz
forums-8f733cc658e20da74e910f3e36edcfdf86a7eba3.zip
[ticket/10820] remove unnecessary parentheses
PHPBB3-10820
Diffstat (limited to 'phpBB')
-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 cba4ef3b7b..f781480bb7 100644
--- a/phpBB/download/file.php
+++ b/phpBB/download/file.php
@@ -680,7 +680,7 @@ function set_modified_headers($stamp, $browser)
// let's see if we have to send the file at all
$last_load = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? strtotime(trim($_SERVER['HTTP_IF_MODIFIED_SINCE'])) : false;
- if ((strpos(strtolower($browser), 'msie 6.0') === false) && (!phpbb_is_greater_ie7($browser)))
+ if (strpos(strtolower($browser), 'msie 6.0') === false && !phpbb_is_greater_ie7($browser))
{
if ($last_load !== false && $last_load >= $stamp)
{