diff options
author | Senky <jakubsenko@gmail.com> | 2012-11-07 10:28:25 +0100 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-05 12:07:37 -0500 |
commit | f7508c3f042091f163a87829a051312fa58630f1 (patch) | |
tree | 4bad84449223a94f57c9ec58a380bd0592c78475 /phpBB/includes/ucp/ucp_prefs.php | |
parent | dd6983b14bba4326d824b3abb130eafc5e8f666c (diff) | |
download | forums-f7508c3f042091f163a87829a051312fa58630f1.tar forums-f7508c3f042091f163a87829a051312fa58630f1.tar.gz forums-f7508c3f042091f163a87829a051312fa58630f1.tar.bz2 forums-f7508c3f042091f163a87829a051312fa58630f1.tar.xz forums-f7508c3f042091f163a87829a051312fa58630f1.zip |
[ticket/10841] removing unnecessary spacing
PHPBB3-10841
Diffstat (limited to 'phpBB/includes/ucp/ucp_prefs.php')
-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 b95d2d4ee8..e84c7e662a 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; } |