aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2011-11-05 01:02:40 +0800
committerrxu <rxu@mail.ru>2011-11-05 01:02:40 +0800
commit2918fbc9709fd1cd698eb3ba5b9459f1301ae898 (patch)
tree4f336eec5eaaf748e059a63c7d4836db91f75661 /phpBB/includes/acp
parent88b31c2ab3f2fe1e88920b3d3b022ee1355321f7 (diff)
downloadforums-2918fbc9709fd1cd698eb3ba5b9459f1301ae898.tar
forums-2918fbc9709fd1cd698eb3ba5b9459f1301ae898.tar.gz
forums-2918fbc9709fd1cd698eb3ba5b9459f1301ae898.tar.bz2
forums-2918fbc9709fd1cd698eb3ba5b9459f1301ae898.tar.xz
forums-2918fbc9709fd1cd698eb3ba5b9459f1301ae898.zip
[ticket/10419] Reword some language strings, minor code changes
PHPBB3-10419
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r--phpBB/includes/acp/acp_main.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php
index e31acfb7d1..c8df21f5a9 100644
--- a/phpBB/includes/acp/acp_main.php
+++ b/phpBB/includes/acp/acp_main.php
@@ -600,15 +600,15 @@ class acp_main
$template->assign_var('S_WRITABLE_CONFIG', (bool) (@fileperms($phpbb_root_path . 'config.' . $phpEx) & 0x0002));
}
- if (@extension_loaded('mbstring'))
+ if (extension_loaded('mbstring'))
{
$template->assign_vars(array(
'S_MBSTRING_LOADED' => true,
- 'S_MBSTRING_FUNC_OVERLOAD_FAIL' => (intval(@ini_get('mbstring.func_overload')) & (MB_OVERLOAD_MAIL|MB_OVERLOAD_STRING)),
+ 'S_MBSTRING_FUNC_OVERLOAD_FAIL' => (intval(@ini_get('mbstring.func_overload')) & (MB_OVERLOAD_MAIL | MB_OVERLOAD_STRING)),
'S_MBSTRING_ENCODING_TRANSLATION_FAIL' => (@ini_get('mbstring.encoding_translation') != 0),
'S_MBSTRING_HTTP_INPUT_FAIL' => (@ini_get('mbstring.http_input') != 'pass'),
- 'S_MBSTRING_HTTP_OUTPUT_FAIL' => (@ini_get('mbstring.http_output') != 'pass'))
- );
+ 'S_MBSTRING_HTTP_OUTPUT_FAIL' => (@ini_get('mbstring.http_output') != 'pass'),
+ ));
}
// Fill dbms version if not yet filled