From 5bae32b3b77b418fe957b4ac30602d32ec3d675b Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 28 May 2008 08:53:04 +0000 Subject: [PATCH] Updated create / move check git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11062 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/plugins/admin/groups/class_groupGeneric.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.30.2