aboutsummaryrefslogtreecommitdiffstats
path: root/util/xml.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-05-13 17:00:27 +0100
committerMatthew Wild <mwild1@gmail.com>2015-05-13 17:00:27 +0100
commita885794fccabfc6dc8cc8e52f83c8ac865ddd8c8 (patch)
tree65bc2e4d57655c0f62aec527649de4e5f46296d4 /util/xml.lua
parentdaec51c435ca77914271200607841d55ff7408d7 (diff)
parent2f7ac943416fa13023e9d061ffc8020811a4ebf0 (diff)
downloadprosody-a885794fccabfc6dc8cc8e52f83c8ac865ddd8c8.tar.gz
prosody-a885794fccabfc6dc8cc8e52f83c8ac865ddd8c8.zip
Merge 0.10->trunk
Diffstat (limited to 'util/xml.lua')
-rw-r--r--util/xml.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xml.lua b/util/xml.lua
index 3c1d3e51..88ccedde 100644
--- a/util/xml.lua
+++ b/util/xml.lua
@@ -39,7 +39,7 @@ local parse_xml = (function()
function handler:CharacterData(data)
stanza:text(data);
end
- function handler:EndElement(tagname)
+ function handler:EndElement()
stanza:up();
end
local parser = lxp.new(handler, "\1");