Code

Fixed class_plugin.inc -> get_cfg_value call
[gosa.git] / gosa-core / setup / class_setupStep_Checks.inc
index 9c32200536cbf2407e696c2fdce39cadb4715ce6..9cdec0485d406d3aa8c8f53ab6061bb9e6b2a6d5 100644 (file)
@@ -25,7 +25,7 @@ class Step_Checks extends setup_step
   var $basic_checks = array();
   var $config_checks= array();
   var $is_writeable = array();
-  var $header_image = "images/system.png";
+  var $header_image = "images/setup/system.png";
 
   function Step_Checks()
   {
@@ -126,7 +126,7 @@ class Step_Checks extends setup_step
 
     /* Checking for Cups module */
     $N = msgPool::checkingFor(_("CUPS"));
-    $D = _("GOsa requires this modukle to show printers that are not defined within the LDAP.");
+    $D = _("GOsa requires this module to show printers that are not defined within the LDAP.");
     $S = msgPool::installPhpModule("CUPS");
     $R = is_callable("cups_get_dest_list");
     $M = FALSE;
@@ -138,7 +138,7 @@ class Step_Checks extends setup_step
     $output= shell_exec ($query);
     $have_mkntpwd= preg_match("/^Usage: mkntpwd /", $output);
     if (!$have_mkntpwd){
-      $query= 'LC_ALL=C LANG=C perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;" &>/dev/null';
+      $query= 'LC_ALL=C LANG=C perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;" >/dev/null';
       system ($query, $ret);
       $have_mkntpwd |= ($ret == 0);
     }