Code

working multitasking
[gosa.git] / gosa-core / setup / class_setupStep_Checks.inc
index 99e34ddfae8c9e709f63f949c21a39d4c696d11e..0721329ded3fa6000be6a380d2fb56d292d41e50 100644 (file)
@@ -108,6 +108,14 @@ class Step_Checks extends setup_step
     $M = TRUE;
     $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
 
+    /* Is imap module available */
+    $N = _("Checking for multi byte support");
+    $D = _("The multi byte string support is required by some plugins.");
+    $S = _("Please compile php with enabled multi byte support '--enable-mbstring'.");
+    $R = is_callable("mb_strlen");
+    $M = TRUE;
+    $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
+
     /* Check getacl in imap module */
     $N = _("Checking for getacl in IMAP implementation");
     $D = _("The getacl support is needed to handle shared folder permissions. Old IMAP extensions are not capable of reading acl's. You need a recent PHP version to use this feature.");