From: hickert Date: Mon, 6 Aug 2007 12:26:22 +0000 (+0000) Subject: Updated gen_uids. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3c21b37befe42cca733b41ae3d33a3ca20a8b8d4;p=gosa.git Updated gen_uids. Generated uids contained a \ in front of each generated word. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6969 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index 8295cbcd2..d52aa1e23 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -1714,7 +1714,7 @@ function gen_uids($rule, $attributes) if ($rule[$pos] == "}" ){ $variables[$pos]= expand_id($part, $attributes); - $stripped.= "\{$pos}"; + $stripped.= "{".$pos."}"; $trigger= false; continue; }