From: hickert Date: Wed, 28 May 2008 08:53:04 +0000 (+0000) Subject: Updated create / move check X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5bae32b3b77b418fe957b4ac30602d32ec3d675b;p=gosa.git Updated create / move check git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11062 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/plugins/admin/groups/class_groupGeneric.inc b/gosa-core/plugins/admin/groups/class_groupGeneric.inc index 2318c2997..78f1d6293 100644 --- a/gosa-core/plugins/admin/groups/class_groupGeneric.inc +++ b/gosa-core/plugins/admin/groups/class_groupGeneric.inc @@ -1121,7 +1121,7 @@ class group extends plugin */ if($this->dn == "new" && !$this->acl_is_createable($this->base)){ $message[] = msgPool::permCreate(); - }elseif($this->cn != $this->orig_cn || $this->base != $this->orig_base){ + }elseif($this->cn != $this->orig_cn || $this->base != $this->orig_base && !$this->acl_is_moveable($this->base)){ $message[] = msgPool::permMove(); }