Code

Added comment, to avoid beaking acls parsing later.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Dec 2008 07:22:11 +0000 (07:22 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Dec 2008 07:22:11 +0000 (07:22 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13250 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/mail/admin/groups/mail/class_groupMail.inc

index b4c01024dba3cb84de6b35744fd218f7cafa7b70..cf3211f7bf46be64b75ecd2ba4efd6e1380bc2a6 100644 (file)
@@ -87,6 +87,9 @@ class mailgroup extends plugin
     if(isset($this->attrs['acl'])){
       for($i = 0; $i < $this->attrs['acl']['count'] ; $i++){
         $str = trim($this->attrs['acl'][$i]);
+
+        /* Be carefull here, since kolab22 uses spaces in the acls (herbert read anon/post)
+         */
         $name = trim(preg_replace("/^([^\s]*).*$/","\\1",$str));
         $acl  = trim(preg_replace("/^[^\s]*+\s/","",$str));
         if($name == "anyone") $name = "__anyone__";