summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/common.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php
index 7fa9c564b..fd6fb911c 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -937,6 +937,16 @@ function check(){
}else{
msg('conf/users.auth is not writable',0);
}
+
+ if(function_exists('mb_strpos')){
+ if(defined('UTF8_NOMBSTRING')){
+ msg('mb_string extension is available but will not be used',0);
+ }else{
+ msg('mb_string extension is available and will be used',1);
+ }
+ }else{
+ msg('mb_string extension not available - PHP only replacements will be used',0);
+ }
msg('Your current permission for this page is '.$INFO['perm'],0);