summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 491ccc1)
raw | patch | inline | side by side (parent: 491ccc1)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 8 Dec 2005 13:21:52 +0000 (13:21 +0000) | ||
committer | cajus <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 | patch | blob | history | |
plugins/admin/groups/class_groupApplication.inc | patch | blob | history |
index d3a5acf19517b8f1cbdae38124d97837e7c10831..43e597ad88fbc0acebdf0ff6e7e9c1a5d4c80799 100644 (file)
<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>
</td>
diff --git a/plugins/admin/groups/class_groupApplication.inc b/plugins/admin/groups/class_groupApplication.inc
index 654f4de1854b08188d2ff1cd74ff2c50d3e8b061..3f181c18fd8630e964ac1c5b845916212a49951a 100644 (file)
$div = new DivSelectBox("appgroup");
- $div->SetHeight(300);
+ $div->SetHeight(400);
/* NEW LIST MANAGMENT
* We also need to search for the departments
}
$div2 = new DivSelectBox("appgroup");
- $div2->SetHeight(300);
+ $div2->SetHeight(400);
$linkopen = "<img src='images/folder.png'> <a href='?plug=".$_GET['plug']."&act=open&id=%s'>%s</a>";
$catremove = " <input type='image' src='images/edittrash.png' name='DelCat_%s' value='%s'>";
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;'")));
}
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;'")));
}
}
}