# HG changeset patch # User Waqas Hussain # Date 1252336334 -18000 # Node ID 98f833669d7ff320f22b0b7db0757c4084cf6e96 # Parent 81406277279ef8182cb45ac85fbdd2273cdc191f MUC: Fixed function declarations. diff -r 81406277279e -r 98f833669d7f plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Mon Sep 07 20:11:13 2009 +0500 +++ b/plugins/muc/muc.lib.lua Mon Sep 07 20:12:14 2009 +0500 @@ -94,7 +94,7 @@ local room_mt = {}; -local function room_mt:broadcast_presence(stanza, code, nick) +function room_mt:broadcast_presence(stanza, code, nick) stanza = get_filtered_presence(stanza); local data = self._participants[stanza.attr.from]; stanza:tag("x", {xmlns='http://jabber.org/protocol/muc#user'}) @@ -121,7 +121,7 @@ end end end -local function room_mt:broadcast_message(stanza, historic) +function room_mt:broadcast_message(stanza, historic) for occupant, o_data in pairs(self._participants) do for jid in pairs(o_data.sessions) do stanza.attr.to = jid;