diff options
| author | Senky <jakubsenko@gmail.com> | 2012-11-08 17:30:58 +0100 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-05 12:07:37 -0500 |
| commit | 120accb9d4b2a89ca05f712a54427e072584c2f9 (patch) | |
| tree | 2a54fb1b15bcda38acacd757dc3cb04ae0812db3 | |
| parent | f7508c3f042091f163a87829a051312fa58630f1 (diff) | |
| download | forums-120accb9d4b2a89ca05f712a54427e072584c2f9.tar forums-120accb9d4b2a89ca05f712a54427e072584c2f9.tar.gz forums-120accb9d4b2a89ca05f712a54427e072584c2f9.tar.bz2 forums-120accb9d4b2a89ca05f712a54427e072584c2f9.tar.xz forums-120accb9d4b2a89ca05f712a54427e072584c2f9.zip | |
[ticket/10841] adding space after if
PHPBB3-10841
| -rw-r--r-- | phpBB/includes/ucp/ucp_prefs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_prefs.php b/phpBB/includes/ucp/ucp_prefs.php index e84c7e662a..c6e43b831c 100644 --- a/phpBB/includes/ucp/ucp_prefs.php +++ b/phpBB/includes/ucp/ucp_prefs.php @@ -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; } |
