# HG changeset patch # User Matthew Wild # Date 1407226589 -3600 # Node ID 93fb28851d9ef32bc17cbfebd54379e5a6d94bfc # Parent 5a63f489dcc6b00908048e0524ec1555f4820741 mod_muc: Fix use of undefined global. Fixes #431. diff -r 5a63f489dcc6 -r 93fb28851d9e plugins/muc/mod_muc.lua --- a/plugins/muc/mod_muc.lua Thu Jul 31 07:14:54 2014 +0100 +++ b/plugins/muc/mod_muc.lua Tue Aug 05 09:16:29 2014 +0100 @@ -148,7 +148,8 @@ if restrict_room_creation then local host_suffix = module.host:gsub("^[^%.]+%.", ""); module:hook("muc-room-pre-create", function(event) - local user_jid = event.stanza.attr.from; + local origin, stanza = event.origin, event.stanza; + local user_jid = stanza.attr.from; if not is_admin(user_jid) and not ( restrict_room_creation == "local" and select(2, jid_split(user_jid)) == host_suffix