mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10820] remove unnecessary parentheses
PHPBB3-10820
This commit is contained in:
parent
5ebebbd719
commit
8f733cc658
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue