Code

Fixed border
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Nov 2005 08:14:32 +0000 (08:14 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 21 Nov 2005 08:14:32 +0000 (08:14 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1990 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/systems/class_printerPPDSelectionDialog.inc

index b8defa751acfd05d1e5c00f57d9e28a203282f10..1c949fb99ddf5015a3671e3ec3c9758595d244be 100644 (file)
@@ -80,17 +80,17 @@ class printerPPDSelectionDialog extends plugin
     if(empty($this->Vendor)){
       foreach($this-> header as $key => $entry){
         $div ->AddEntry (array(
-              array("string"=>sprintf($linkopen,$key,$key))
+              array("string"=>sprintf($linkopen,$key,$key),"attach"=>"style='border-right:0px;'")
               ));
       }
     }else{
       $div ->AddEntry (array(
-            array("string"=>sprintf($linkopen,"",".. ["._("back")."]"))
+            array("string"=>sprintf($linkopen,"",".. ["._("back")."]"),"attach"=>"style='border-right:0px;'")
             ));
       foreach($list as $key => $ppd){
         if(preg_match("/^".$this->Vendor."/",$ppd['ppd'])){
           $div ->AddEntry (array(
-                array("string"=>sprintf($uselink,$key,$ppd['ppd']))
+                array("string"=>sprintf($uselink,$key,$ppd['ppd']),"attach"=>"style='border-right:0px;'")
                 ));
         }
       }