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/password.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/password.lib.lua')
-rw-r--r-- | plugins/muc/password.lib.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/muc/password.lib.lua b/plugins/muc/password.lib.lua index d169790a..48486d73 100644 --- a/plugins/muc/password.lib.lua +++ b/plugins/muc/password.lib.lua @@ -7,6 +7,8 @@ -- COPYING file in the source package for more information. -- +local st = require "util.stanza"; + local function get_password(room) return room._data.password; end |