Code

Updates for layout reasons
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 8 Dec 2005 13:21:52 +0000 (13:21 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 8 Dec 2005 13:21:52 +0000 (13:21 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2258 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/groups/application.tpl
plugins/admin/groups/class_groupApplication.inc

index d3a5acf19517b8f1cbdae38124d97837e7c10831..43e597ad88fbc0acebdf0ff6e7e9c1a5d4c80799 100644 (file)
@@ -2,9 +2,9 @@
  <tr>
   <td style="width:48%; vertical-align:top;">
    <b><LABEL for="used_apps">{t}Used applications{/t}</LABEL></b>
-        {$UsedApps} 
-       <input type="text" value="" name='CatName'>
-       <input type="submit" value="{t}Add categorie{/t}" name='AddCat'>
+       {$UsedApps} 
+       <input type="text" value="" size="35" name='CatName'>
+       <input type="submit" value="{t}Add category{/t}" name='AddCat'>
   </td>
   <td>&nbsp;
   </td>
index 654f4de1854b08188d2ff1cd74ff2c50d3e8b061..3f181c18fd8630e964ac1c5b845916212a49951a 100644 (file)
@@ -459,7 +459,7 @@ class appgroup extends plugin
 
     $div = new DivSelectBox("appgroup");    
 
-    $div->SetHeight(300);
+    $div->SetHeight(400);
 
     /* NEW LIST MANAGMENT
      * We also need to search for the departments
@@ -544,7 +544,7 @@ class appgroup extends plugin
     }
 
     $div2 = new DivSelectBox("appgroup");
-    $div2->SetHeight(300);
+    $div2->SetHeight(400);
 
     $linkopen       = "<img src='images/folder.png'>&nbsp;<a href='?plug=".$_GET['plug']."&amp;act=open&amp;id=%s'>%s</a>";
     $catremove      = "&nbsp;<input type='image' src='images/edittrash.png' name='DelCat_%s' value='%s'>";
@@ -571,8 +571,7 @@ class appgroup extends plugin
     foreach($this->GetSubdirs($this->curCatDir) as $path => $name){
       $div2 ->AddEntry(array( 
             array("string"=>sprintf($linkopen,$path,$name)),
-            array("string"=>preg_replace("/%s/",$path,$catupdown.$catremove).
-              "<img src='images/empty.png' width='19px'>",
+            array("string"=>preg_replace("/%s/",$path,$catupdown.$catremove),
               "attach"=>"align='right' style='width:80px;border-right:0px;'"))); 
     }
 
@@ -591,10 +590,10 @@ class appgroup extends plugin
       foreach($this->gosaMemberApplication[$this->curCatDir] as $cat => $entry){
         if(preg_match("/__SEPARATOR__/",$entry['App'])){
           $div2 ->AddEntry(array(array("string"=>$separator),
-                array("string"=>preg_replace("/\%s/",$entry['App'],$upudown."<img src='images/empty.png' width='19px'>"),"attach"=>"align='right' style='border-right:0px;'")));
+                array("string"=>preg_replace("/\%s/",$entry['App'],$upudown),"attach"=>"align='right' style='border-right:0px;'")));
         }else{
           $div2 ->AddEntry(array(array("string"=>sprintf($app,$entry['App'])),
-                array("string"=>preg_replace("/\%s/",$entry['App'],$sep.$upudown.$edit),"attach"=>"align='right' style='border-right:0px;'")));
+                array("string"=>preg_replace("/\%s/",$entry['App'],$sep.$edit.$upudown),"attach"=>"align='right' style='border-right:0px;'")));
         }
       }
     }