diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-12-16 16:45:57 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-12-16 16:45:57 +0000 |
commit | bf2a083f24654a1011a52ac0e10c00daaf3ad297 (patch) | |
tree | afcf1e14e2c570a3d6ece2f1b15d67be4f601a85 /plugins/muc | |
parent | 7a63092b1338dc12dda8a7e76d1eb02f79015a60 (diff) | |
parent | 1580f84bd464f9a1368d74bade707039b065530c (diff) | |
download | prosody-bf2a083f24654a1011a52ac0e10c00daaf3ad297.tar.gz prosody-bf2a083f24654a1011a52ac0e10c00daaf3ad297.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 6f21ec3a..b96288ed 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -714,7 +714,7 @@ function room_mt:process_form(origin, stanza) if next(changed) then local msg = st.message({type='groupchat', from=self.jid}) - :tag('x', {xmlns='http://jabber.org/protocol/muc#user'}):up() + :tag('x', {xmlns='http://jabber.org/protocol/muc#user'}) :tag('status', {code = '104'}):up(); if changed.whois then local code = (self:get_whois() == 'moderators') and "173" or "172"; |