diff options
author | Kim Alvefur <zash@zash.se> | 2013-12-14 17:25:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-12-14 17:25:55 +0100 |
commit | 122b7f950dfaea345085c6e280dcd858914824e2 (patch) | |
tree | f09333963a51f34667fb3267cb8ce196e84d7485 | |
parent | 02bc1d47f4a2a72a45f1a13dbb47813f274cb2d7 (diff) | |
parent | acd137be67750781431861d432d63adf74f40305 (diff) | |
download | prosody-122b7f950dfaea345085c6e280dcd858914824e2.tar.gz prosody-122b7f950dfaea345085c6e280dcd858914824e2.zip |
Merge 0.10->trunk
-rw-r--r-- | plugins/muc/mod_muc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 38c97d61..042d3891 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -164,7 +164,7 @@ function stanza_handler(event) return true; end if not(restrict_room_creation) or - is_admin(stanza.attr.from)) or + is_admin(stanza.attr.from) or (restrict_room_creation == "local" and select(2, jid_split(stanza.attr.from)) == module.host:gsub("^[^%.]+%.", "")) then room = create_room(bare); end |