Code

Added check for iconv
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 13 May 2005 11:54:50 +0000 (11:54 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 13 May 2005 11:54:50 +0000 (11:54 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@207 594d385d-05f5-0310-b6e9-bd551577e9d8

TODO
include/setup_checks.inc

diff --git a/TODO b/TODO
index 32db0aa39a8f067efab6b9a8463b2b62d362f5e6..50a77f3371a61497091fc43b426043478e9a3966 100644 (file)
--- 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:
 ===============
index cc57dc45f022f44ffe28d29c5189450748eea3ad..b5ce6684c382393420736fc0d559683013fb0ebe 100644 (file)
@@ -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);