Code

Remove braces after we've analyzed the string. Closes #619
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 6 Feb 2009 13:25:57 +0000 (13:25 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 6 Feb 2009 13:25:57 +0000 (13:25 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13395 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index dd56b68a2d3b5e2251bc6298846129cac7ae59a8..c630642e2b66903bee9c9fdf0874d0b66b0cf871 100644 (file)
@@ -1749,7 +1749,8 @@ function gen_uids($rule, $attributes)
 
     /* Don't assign used ones */
     if (!in_array($uid, $used)){
-      $ret[]= $uid;
+      /* Add uid, but remove {} first. These are invalid anyway. */
+      $ret[]= preg_replace('/[{}]/', '', $uid);
     }
   }