summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b18cfc)
raw | patch | inline | side by side (parent: 4b18cfc)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Mar 2008 07:04:13 +0000 (07:04 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 Mar 2008 07:04:13 +0000 (07:04 +0000) |
-Added mbstring check to setup
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9331 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9331 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/setup/class_setupStep_Checks.inc | patch | blob | history |
diff --git a/gosa-core/setup/class_setupStep_Checks.inc b/gosa-core/setup/class_setupStep_Checks.inc
index 99e34ddfae8c9e709f63f949c21a39d4c696d11e..0721329ded3fa6000be6a380d2fb56d292d41e50 100644 (file)
$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.");