# HG changeset patch # User Waqas Hussain # Date 1253831011 -18000 # Node ID ed1911be26c74664918481019b2c56d7ae9c09b6 # Parent a394e0bd4847def0db7b39abd3dfa63eeee1a615 MUC: Added legacy error code to the presence error returned when a banned user attempts to join. diff -r a394e0bd4847 -r ed1911be26c7 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Fri Sep 25 03:21:57 2009 +0500 +++ b/plugins/muc/muc.lib.lua Fri Sep 25 03:23:31 2009 +0500 @@ -292,7 +292,9 @@ self:broadcast_presence(pr); self:send_history(from); else -- banned - origin.send(st.error_reply(stanza, "auth", "forbidden"):tag("x", {xmlns = "http://jabber.org/protocol/muc"})); + local reply = st.error_reply(stanza, "auth", "forbidden"):up(); + reply.tags[1].attr.code = "403"; + origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"})); end end end