diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-03-22 11:21:24 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-03-22 11:21:24 +0000 |
commit | ee5a8c95433c8e183c537d936a37e4701e3997f3 (patch) | |
tree | b2e13770bd92583a8854f1c07824a40cefeb7b14 /prosody | |
parent | 0c46e400afa7fef669b2f3a9ea2ed76633e8652b (diff) | |
download | prosody-ee5a8c95433c8e183c537d936a37e4701e3997f3.tar.gz prosody-ee5a8c95433c8e183c537d936a37e4701e3997f3.zip |
configmanager, hostmanager, prosody: Almost complete removal of section-related code, and the infamous 'core' section. Still backwards-compatible with API users.
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 4 |
1 files changed, 2 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 |