mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.stanza: Move misplaced argument to correct place
valid_utf8() takes only one argument, so the false was probably meant to be valid_xml_cdata(text, attribute=false)
This commit is contained in:
parent
db3c36c69d
commit
7f7ec9e1ed
1 changed files with 2 additions and 2 deletions
|
@ -66,9 +66,9 @@ end
|
|||
local function check_text(text, text_type)
|
||||
if type(text) ~= "string" then
|
||||
error("invalid "..text_type.." value: expected string, got "..type(text));
|
||||
elseif not valid_xml_cdata(text) then
|
||||
elseif not valid_xml_cdata(text, false) then
|
||||
error("invalid "..text_type.." value: contains control characters");
|
||||
elseif not valid_utf8(text, false) then
|
||||
elseif not valid_utf8(text) then
|
||||
error("invalid "..text_type.." value: contains invalid utf8");
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue