Code

Readded my changes - Testing now
[gosa.git] / gosa-core / setup / class_setupStep_Checks.inc
index c405cbf145eead92c95dc3e635db0b6f959cd36f..3bcf510c14a3f0f6246a26ef3bb8b60d16e1811f 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()
   {
@@ -124,14 +124,6 @@ class Step_Checks extends setup_step
     $M = TRUE;
     $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
 
-    /* Checking for Cups module */
-    $N = msgPool::checkingFor(_("CUPS"));
-    $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;
-    $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
-
     /* Checking generate LM/NT password hashes */
     #TODO: either this, or gosa-si will do the hash generation
     $query= "mkntpwd 2>&1";