mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.xml: Use variable instead of constant for consistency (thanks Thijs)
This commit is contained in:
parent
f343cf5ba0
commit
5a1aa107c3
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ local parse_xml = (function()
|
|||
function handler:EndElement()
|
||||
stanza:up();
|
||||
end
|
||||
local parser = lxp.new(handler, "\1");
|
||||
local parser = lxp.new(handler, ns_separator);
|
||||
local ok, err, line, col = parser:parse(xml);
|
||||
if ok then ok, err, line, col = parser:parse(); end
|
||||
--parser:close();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue