summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 84bf8d2)
raw | patch | inline | side by side (parent: 84bf8d2)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Aug 2007 08:56:27 +0000 (08:56 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 21 Aug 2007 08:56:27 +0000 (08:56 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7086 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/addons/gotomasses/class_goto_task.inc | patch | blob | history |
diff --git a/plugins/addons/gotomasses/class_goto_task.inc b/plugins/addons/gotomasses/class_goto_task.inc
index 0fd58f422d91c0ba3a9bdd9fb8d1c522f5225946..acaa0d4fa6e5127b7b42af73b45bf30c54d80489 100644 (file)
$divlist->SetHeader(array(
array("string" => "Target"),
- array("string" => "Actions" , "attach" => "style='width:40px;border-right:0px;'")));
+ array("string" => "Actions" , "attach" => "style='width:44px;border-right:0px;'")));
$acl_target = $this->parent->getacl("Target");
foreach($this->Target as $key => $target){
$field1 = array("string" => $target);
if(preg_match("/w/i",$acl_target)){
$field2 = array("string" => "<input type='image' src='images/edittrash.png' name='remove_".$key."'>" ,
- "attach" => "style='width:40px;border-right:0px;'");
+ "attach" => "style='width:44px;border-right:0px;'");
}else{
$field2 = array("string" => "",
- "attach" => "style='width:40px;border-right:0px;'");
+ "attach" => "style='width:44px;border-right:0px;'");
}
$divlist->AddEntry(array($field1,$field2));
}