From: Arran Cudbard-Bell Date: Mon, 8 Jun 2015 12:14:44 +0000 (-0400) Subject: xlat value concat uses ',' X-Git-Tag: release_3_0_9~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6ef3cff9c1e0ee80b0513279192bb8c35601fc5;p=thirdparty%2Ffreeradius-server.git xlat value concat uses ',' --- diff --git a/man/man5/unlang.5 b/man/man5/unlang.5 index 0b07302efea..7385d50d013 100644 --- a/man/man5/unlang.5 +++ b/man/man5/unlang.5 @@ -690,14 +690,14 @@ e.g. If a request contains "User-Name = bob", the expansion of %{User-Name[#]} will yeild "1". .IP %{Attribute-Name[*]} -All values of Attribute-Name, concatenated together with \\n as the +All values of Attribute-Name, concatenated together with ',' as the separator. .IP %{List-Name:[#]} The number of attributes in the named list. .IP %{List-Name:[*]} -All values of attributes in the named-list, concatenated together with \\n +All values of attributes in the named-list, concatenated together with ',' as the separator. Use the %{pairs:} xlat to get a list of attributes and values.