]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
note limitations
authorAlan T. DeKok <aland@freeradius.org>
Wed, 11 Oct 2023 20:01:17 +0000 (16:01 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 12 Oct 2023 14:09:25 +0000 (10:09 -0400)
doc/antora/modules/reference/pages/unlang/edit.adoc

index d0483d5ac46a0c596609bbe636d8bee0cdb12def..923f59b92bc1f60d5ad0395e8a9238f1dda40945 100644 (file)
@@ -15,7 +15,8 @@ attributes.
 ...
 
 &list1 := &list2
-&list1 += { ... }
+&list1 += { &attribute = value, ... }
+&list1 += " attribute = value, ... "
 ...
 ----
 
@@ -313,6 +314,9 @@ assignment.  This funtionality is most useful for putting attribute
 lists into a database, and then reading them back when a request is
 processed.
 
+Note that the pairs in the string _cannot_ have list qualifiers.  That
+is, `&reply += "request.foo ..."` is not allowed.
+
 .Assigning attributes taken from a string
 ====
 [source,unlang]
@@ -324,7 +328,7 @@ processed.
 The above example has the same result as the earlier example of adding
 `Filter-Id` to the `reply`, using an "in-place" list.
 
-.Append the contents of the `request` list to the `reply` list.
+.Append pairs read from SQL to the reply
 ====
 [source,unlang]
 ----