mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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
a0b5b349a6
commit
24e57b7590
1 changed files with 2 additions and 2 deletions
|
@ -66,9 +66,9 @@ end
|
||||||
local function check_text(text, text_type)
|
local function check_text(text, text_type)
|
||||||
if type(text) ~= "string" then
|
if type(text) ~= "string" then
|
||||||
error("invalid "..text_type.." value: expected string, got "..type(text));
|
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");
|
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");
|
error("invalid "..text_type.." value: contains invalid utf8");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue