From 704fa7ddaac7fbf1168a1c58c3dd394c14755cd1 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 12 Jul 2006 05:02:10 +0000 Subject: [PATCH] Added edit link git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4109 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/acl/class_divListACL.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/admin/acl/class_divListACL.inc b/plugins/admin/acl/class_divListACL.inc index d320d2e29..446fd3e0b 100644 --- a/plugins/admin/acl/class_divListACL.inc +++ b/plugins/admin/acl/class_divListACL.inc @@ -107,6 +107,7 @@ class divListACL extends MultiSelectWindow function setEntries($list) { $list_left_icon = ""._("Acl").""; + $editlink = "%s"; foreach($list as $key => $acl_entry){ @@ -125,7 +126,7 @@ class divListACL extends MultiSelectWindow name='acl_del_%KEY%' title='"._("Delete system")."'>"; $field1 = array("string" => $list_left_icon, "attach"=> "style='text-align:center;width:20px;'"); - $field2 = array("string" => htmlentities(utf8_decode($acl_entry['dn']))." ","attach" => ""); + $field2 = array("string" => sprintf($editlink,$key,htmlentities(utf8_decode($acl_entry['dn'])))." ","attach" => ""); $field3 = array("string" => preg_replace("/%KEY%/",$key,$action), "attach"=> "style='text-align:center;width:80px;border-right:0px;'"); $this->AddElement(array($field1,$field2,$field3)); } -- 2.30.2