# HG changeset patch # User Matthew Wild # Date 1386939194 0 # Node ID 783107f85ea085f25cb0ab563fbad92335bb9f12 # Parent 97b891475cd6d6bac598979233c989bf8bbfe69e# Parent 56d81af64fc59fa61f0b3c249fe85c57e470ba7b Merge 0.10->trunk diff -r 97b891475cd6 -r 783107f85ea0 plugins/muc/mod_muc.lua --- a/plugins/muc/mod_muc.lua Wed Dec 11 22:32:17 2013 +0000 +++ b/plugins/muc/mod_muc.lua Fri Dec 13 12:53:14 2013 +0000 @@ -164,7 +164,7 @@ 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 diff -r 97b891475cd6 -r 783107f85ea0 prosody --- a/prosody Wed Dec 11 22:32:17 2013 +0000 +++ b/prosody Fri Dec 13 12:53:14 2013 +0000 @@ -86,6 +86,7 @@ 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 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));