aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-04-08 20:19:55 +0100
committerMatthew Wild <mwild1@gmail.com>2009-04-08 20:19:55 +0100
commitf6a5da2375a21b7cd2429b7ba82d819683af5109 (patch)
tree7148b7e142e79cfc47dcec5f7e22f47a219946b3 /util
parent9982558804de3976a3d5d9e12ab5215503420e0f (diff)
parentedd59b5d381bd8b0daee063a99f8678f86f6b9bb (diff)
downloadprosody-f6a5da2375a21b7cd2429b7ba82d819683af5109.tar.gz
prosody-f6a5da2375a21b7cd2429b7ba82d819683af5109.zip
Automated merge with http://waqas.ath.cx:8000/
Diffstat (limited to 'util')
-rw-r--r--util/stanza.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/util/stanza.lua b/util/stanza.lua
index 1ad3679b..7e40dfa4 100644
--- a/util/stanza.lua
+++ b/util/stanza.lua
@@ -65,6 +65,14 @@ function stanza_mt:up()
return self;
end
+function stanza_mt:reset()
+ local last_add = self.last_add;
+ for i = 1,#last_add do
+ last_add[i] = nil;
+ end
+ return self;
+end
+
function stanza_mt:add_direct_child(child)
if type(child) == "table" then
t_insert(self.tags, child);