mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11508] Remove unnecessary isset check.
PHPBB3-11508
This commit is contained in:
parent
141d386025
commit
b0dd532c14
1 changed files with 1 additions and 4 deletions
|
@ -300,10 +300,7 @@ class path_helper
|
||||||
// Strip the parameters off
|
// Strip the parameters off
|
||||||
foreach ($strip as $param)
|
foreach ($strip as $param)
|
||||||
{
|
{
|
||||||
if (isset($params[$param]))
|
unset($params[$param]);
|
||||||
{
|
|
||||||
unset($params[$param]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue