From: psc Date: Fri, 9 Oct 2009 10:16:13 +0000 (+0000) Subject: Fix problems with removing services after saving X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e8e2597857244ace34b8c8579aae5e9d2db3bdd;p=gosa.git Fix problems with removing services after saving When initializing ServerService set acl_base. This fixes problems, where services cannot be deleted, because acl_base is not set after saving the services dialog. (Trac: #3285) git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@14567 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/trunk/gosa-plugins/systems/admin/systems/class_serverService.inc b/trunk/gosa-plugins/systems/admin/systems/class_serverService.inc index 4bd58ed18..da19de44c 100644 --- a/trunk/gosa-plugins/systems/admin/systems/class_serverService.inc +++ b/trunk/gosa-plugins/systems/admin/systems/class_serverService.inc @@ -54,6 +54,9 @@ class ServerService extends plugin $this->parent = $parent; $this->dn= $dn; + /* Initialize acl_base */ + $this->set_acl_base($this->dn); + /* Adapt parent attributes */ if(isset($this->parent->attrs)){ $this->attrs = $this->parent->attrs;