1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10841] adding space after if

PHPBB3-10841
This commit is contained in:
Senky
2012-11-08 17:30:58 +01:00
committed by Oleg Pudeyev
parent f7508c3f04
commit 120accb9d4

View File

@@ -138,7 +138,7 @@ class ucp_prefs
$sql = 'SELECT COUNT(lang_id) as languages_count
FROM ' . LANG_TABLE;
$result = $db->sql_query($sql);
if($db->sql_fetchfield('languages_count') > 1)
if ($db->sql_fetchfield('languages_count') > 1)
{
$s_more_languages = true;
}
@@ -153,7 +153,7 @@ class ucp_prefs
FROM ' . STYLES_TABLE . '
WHERE style_active = 1';
$result = $db->sql_query($sql);
if($db->sql_fetchfield('styles_count') > 1)
if ($db->sql_fetchfield('styles_count') > 1)
{
$s_more_styles = true;
}