diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-12-13 12:53:14 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-12-13 12:53:14 +0000 |
commit | 02bc1d47f4a2a72a45f1a13dbb47813f274cb2d7 (patch) | |
tree | 706e1bd214c36daa363bfd6749ab4cafec8faa81 | |
parent | 45408a488aa7a795a70f4d2f0a5a613dc64fdb57 (diff) | |
parent | 80c1a2634a90d0394188f8fa9a58caa112fcc30b (diff) | |
download | prosody-02bc1d47f4a2a72a45f1a13dbb47813f274cb2d7.tar.gz prosody-02bc1d47f4a2a72a45f1a13dbb47813f274cb2d7.zip |
Merge 0.10->trunk
-rw-r--r-- | plugins/muc/mod_muc.lua | 2 | ||||
-rwxr-xr-x | prosody | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index cb967c90..38c97d61 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 - (restrict_room_creation == "admin" and 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 @@ -86,6 +86,7 @@ function read_config() break; end end + prosody.config_file = filename local ok, level, err = config.load(filename); if not ok then print("\n"); @@ -240,7 +241,7 @@ function init_global_state() function prosody.reload_config() log("info", "Reloading configuration file"); prosody.events.fire_event("reloading-config"); - local ok, level, err = config.load((rawget(_G, "CFG_CONFIGDIR") or ".").."/prosody.cfg.lua"); + local ok, level, err = config.load(prosody.config_file); if not ok then if level == "parser" then log("error", "There was an error parsing the configuration file: %s", tostring(err)); |