1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 00:02:18 +02:00

[ticket/12852] Add space after if

PHPBB3-12852
This commit is contained in:
Jakub Senko 2014-09-04 17:44:41 +02:00
parent 28587d0afc
commit 1d4cae9ecb

View File

@ -325,7 +325,7 @@ class path_helper
foreach ($params as $key => $value)
{
// some parameters do not have value
if($value !== null)
if ($value !== null)
{
$_params[] = $key . '=' . $value;
}