diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-08-05 09:55:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-08-05 09:55:08 +0100 |
commit | e77035761a9de8dc2efafcd771fd29a197bb8b0b (patch) | |
tree | 3c468d13e1922e7470b9b18745050e33d92bddc3 /plugins/muc/lock.lib.lua | |
parent | dfc87dc7ebe5d424022eae8e10fa8d7a1f404e0f (diff) | |
download | prosody-e77035761a9de8dc2efafcd771fd29a197bb8b0b.tar.gz prosody-e77035761a9de8dc2efafcd771fd29a197bb8b0b.zip |
mod_muc: Import util.stanza into the config handler modules that need it. Fixes #432.
Diffstat (limited to 'plugins/muc/lock.lib.lua')
-rw-r--r-- | plugins/muc/lock.lib.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/muc/lock.lib.lua b/plugins/muc/lock.lib.lua index 319a6973..82f0dc3f 100644 --- a/plugins/muc/lock.lib.lua +++ b/plugins/muc/lock.lib.lua @@ -7,6 +7,8 @@ -- COPYING file in the source package for more information. -- +local st = require "util.stanza"; + local lock_rooms = module:get_option_boolean("muc_room_locking", false); local lock_room_timeout = module:get_option_number("muc_room_lock_timeout", 300); |