Code

Fixed server service images
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Nov 2007 15:02:10 +0000 (15:02 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Nov 2007 15:02:10 +0000 (15:02 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7967 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/systems/class_divListSystemService.inc

index 80d306326ce277a04e0e13dc5b733624a973e9a2..15344f3b3290b00ae2abc934a54ccd9bdd02b94d 100644 (file)
@@ -100,19 +100,19 @@ class divListSystemService extends MultiSelectWindow
         $actions .= "&nbsp;<input type='image' name='StartSingleService_".$name."' src='images/status_start.png'
                             title='"._("Start service")."'>";
       }else{
-        $actions .= "&nbsp;<img src='images/empty' width='16' alt=''>";
+        $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
       if($entry['AllowStart'] && $WasAccount){
         $actions .= "&nbsp;<input type='image' name='StopSingleService_".$name."' src='images/status_stop.png'
                             title='"._("Stop service")."'>";
       }else{
-        $actions .= "&nbsp;<img src='images/empty' width='16' alt=''>";
+        $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
       if($entry['AllowStart'] && $WasAccount){
         $actions .= "&nbsp;<input type='image' name='RestartSingleService_".$name."' src='images/status_restart.png'
                             title='"._("Restart service")."'>";
       }else{
-        $actions .= "&nbsp;<img src='images/empty' width='16' alt=''>";
+        $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
 
       /* Check if edit is enabled and allowed for current service */
@@ -120,7 +120,7 @@ class divListSystemService extends MultiSelectWindow
         $actions .= "&nbsp;<input type='image' name='EditSingleService_".$name."' src='images/edit.png'
                             title='"._("Edit service")."'>";
       }else{
-        $actions .= "&nbsp;<img src='images/empty' width='16' alt=''>";
+        $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
 
       /* Check if remove is enabled and allowed for current service */
@@ -128,7 +128,7 @@ class divListSystemService extends MultiSelectWindow
         $actions .= "&nbsp;<input type='image' name='RemoveSingleService_".$name."' src='images/edittrash.png'
                             title='"._("Remove service")."'>";
       }else{
-        $actions .= "&nbsp;<img src='images/empty' width='16' alt=''>";
+        $actions .= "&nbsp;<img src='images/empty.png' width='16' alt=''>";
       }
 
       $field3 = array("string" => $actions ,"attach" => "style='width:100px;border-right:0px;'");