Code

Updated group create check
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 28 May 2008 10:08:01 +0000 (10:08 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 28 May 2008 10:08:01 +0000 (10:08 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11077 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/admin/groups/class_groupGeneric.inc

index 78f1d62936a2c7f87b81a0a4c232335e7d623626..7f27fcfe08dafe36153686c870ccdeb6dc1676a7 100644 (file)
@@ -1119,9 +1119,9 @@ class group extends plugin
 
     /* Check if we are allowed to create or move this object 
      */
-    if($this->dn == "new" && !$this->acl_is_createable($this->base)){
+    if($this->orig_dn == "new" && !$this->acl_is_createable($this->base)){
       $message[] = msgPool::permCreate();
-    }elseif($this->cn != $this->orig_cn || $this->base != $this->orig_base && !$this->acl_is_moveable($this->base)){
+    }elseif($this->orig_base && !$this->acl_is_moveable($this->base)){
       $message[] = msgPool::permMove();
     }