From: cajus Date: Fri, 13 May 2005 11:54:50 +0000 (+0000) Subject: Added check for iconv X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2d09596e82e792584484a87ac32d8f1ee9162196;p=gosa.git Added check for iconv git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@207 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/TODO b/TODO index 32db0aa39..50a77f337 100644 --- a/TODO +++ b/TODO @@ -15,8 +15,6 @@ Things to fix in 2.3.9: * Unify filters (User -> Add local) -* Check for iconv support in setup - Target for 2.4: =============== diff --git a/include/setup_checks.inc b/include/setup_checks.inc index cc57dc45f..b5ce6684c 100644 --- a/include/setup_checks.inc +++ b/include/setup_checks.inc @@ -231,6 +231,10 @@ function perform_php_checks(&$faults) $msg.= check ( $faults, _("Checking for gettext support"), _("Gettext support is required for internationalized GOsa."), function_exists('bindtextdomain')); + $msg.= check ( $faults, _("Checking for iconv support"), + _("This module is used by GOsa to convert samba munged dial informations and is therefore required."), + function_exists('iconv')); + $msg.= check ( $faults, _("Checking for mhash module"), _("To use SSHA encryption, you'll need this module. If you are just using crypt or md5 encryption, ignore this message. GOsa will run without it."), function_exists('mhash'), FALSE);