mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 23:25:30 +02:00
[ticket/10841] adding space after if
PHPBB3-10841
This commit is contained in:
parent
f7508c3f04
commit
120accb9d4
@ -138,7 +138,7 @@ class ucp_prefs
|
|||||||
$sql = 'SELECT COUNT(lang_id) as languages_count
|
$sql = 'SELECT COUNT(lang_id) as languages_count
|
||||||
FROM ' . LANG_TABLE;
|
FROM ' . LANG_TABLE;
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
if($db->sql_fetchfield('languages_count') > 1)
|
if ($db->sql_fetchfield('languages_count') > 1)
|
||||||
{
|
{
|
||||||
$s_more_languages = true;
|
$s_more_languages = true;
|
||||||
}
|
}
|
||||||
@ -153,7 +153,7 @@ class ucp_prefs
|
|||||||
FROM ' . STYLES_TABLE . '
|
FROM ' . STYLES_TABLE . '
|
||||||
WHERE style_active = 1';
|
WHERE style_active = 1';
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
if($db->sql_fetchfield('styles_count') > 1)
|
if ($db->sql_fetchfield('styles_count') > 1)
|
||||||
{
|
{
|
||||||
$s_more_styles = true;
|
$s_more_styles = true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user