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 | 515e80d5267ad5f0c830d754b8a856d850028132 (patch) | |
tree | b2e13770bd92583a8854f1c07824a40cefeb7b14 /prosody | |
parent | c237eea8303441bc4cf5cd4f05eeb1d91d512b59 (diff) | |
download | prosody-515e80d5267ad5f0c830d754b8a856d850028132.tar.gz prosody-515e80d5267ad5f0c830d754b8a856d850028132.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 |