From: hickert Date: Mon, 6 Sep 2010 08:38:15 +0000 (+0000) Subject: Updated class_plugin.inc X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8fad00f2d2622cbbac9b03604ebd3255bf5c0874;p=gosa.git Updated class_plugin.inc -Once we've touched an object that matches the users dn ($ui->dn) we've to update ACLs too. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19519 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_plugin.inc b/gosa-core/include/class_plugin.inc index 6b8789659..e1a7853b9 100644 --- a/gosa-core/include/class_plugin.inc +++ b/gosa-core/include/class_plugin.inc @@ -1333,6 +1333,7 @@ class plugin $ui = session::global_get('ui'); if($ui->dn == $old_dn){ $ui->dn = $new_dn; + $ui->loadACL(); session::global_set('ui',$ui); new log("view","acl/".get_class($this),$this->dn,array(),"Updated current object dn from '".$old_dn."' to '".$new_dn."'"); }