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
commit70e77200f7789e9fb606c7e99e30a54aca70c5c5 (patch)
tree65bc2e4d57655c0f62aec527649de4e5f46296d4 /util/xml.lua
parent125dc63f565a46aedcb1750c45dcc97c71c2c72b (diff)
parent9bd85eabf029220d25431ab17bc86bf308b51b8d (diff)
downloadprosody-70e77200f7789e9fb606c7e99e30a54aca70c5c5.tar.gz
prosody-70e77200f7789e9fb606c7e99e30a54aca70c5c5.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");