summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0a077b4)
raw | patch | inline | side by side (parent: 0a077b4)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 20 Sep 2007 06:26:58 +0000 (06:26 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 20 Sep 2007 06:26:58 +0000 (06:26 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7341 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/groups/class_groupManagement.inc | patch | blob | history |
diff --git a/plugins/admin/groups/class_groupManagement.inc b/plugins/admin/groups/class_groupManagement.inc
index f202fa5e36ea4442d6bf7d8d65a5ad8efda3151d..67cd7091cc908c6869ba3b45be75a8acfc4b974b 100644 (file)
/* Load permissions for selected 'dn' and check if
we're allowed to remove this 'dn' */
- $acl = $this->ui->get_permissions($this->dn,"groups/group");
+ $acl = $this->ui->get_permissions($dn,"groups/group");
if(preg_match("/d/",$acl)){
/* Delete request is permitted, perform LDAP action */
- $this->grouptab= new grouptabs($this->config,$this->config->data['TABS']['GROUPTABS'], $this->dn);
- $this->grouptab->set_acl_base($this->dn);
+ $this->grouptab= new grouptabs($this->config,$this->config->data['TABS']['GROUPTABS'], $dn);
+ $this->grouptab->set_acl_base($dn);
$this->grouptab->delete ();
unset ($this->grouptab);
$this->grouptab= NULL;