diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-03-22 14:22:46 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-03-22 14:22:46 +0000 |
commit | a2dec278161293bdb918050f2ef7c4f67ecec5b2 (patch) | |
tree | b1bb7539874dc7f64bb74173129613d40fe99e93 /prosody | |
parent | 35954e5ddec7de0d46c143ef53f36aec6b254fc2 (diff) | |
parent | 541f26b54247c37eed9889910435e35fbf0d9a24 (diff) | |
download | prosody-a2dec278161293bdb918050f2ef7c4f67ecec5b2.tar.gz prosody-a2dec278161293bdb918050f2ef7c4f67ecec5b2.zip |
Merge 0.9->trunk
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -132,8 +132,8 @@ end function sanity_check() for host, host_config in pairs(config.getconfig()) do if host ~= "*" - and host_config.core.enabled ~= false - and not host_config.core.component_module then + and host_config.enabled ~= false + and not host_config.component_module then return; end end @@ -198,6 +198,7 @@ function set_function_metatable() end function init_global_state() + -- COMPAT: These globals are deprecated bare_sessions = {}; full_sessions = {}; hosts = {}; |