mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.8->trunk
This commit is contained in:
commit
373838b53a
1 changed files with 8 additions and 0 deletions
|
@ -108,6 +108,14 @@ function stanza_mt:get_child(name, xmlns)
|
|||
end
|
||||
end
|
||||
|
||||
function stanza_mt:get_child_text(name, xmlns)
|
||||
local tag = self:get_child(name, xmlns);
|
||||
if tag then
|
||||
return tag:get_text();
|
||||
end
|
||||
return nil;
|
||||
end
|
||||
|
||||
function stanza_mt:child_with_name(name)
|
||||
for _, child in ipairs(self.tags) do
|
||||
if child.name == name then return child; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue