# HG changeset patch # User Matthew Wild # Date 1255904775 -3600 # Node ID f15108153710ce3f37c8a734a935db370764fdc7 # Parent 5c4dd39a1e99ee213f7c55407c670454299700c6 Fix some muclogging -> muc_log issues I brought back in the merge diff -r 5c4dd39a1e99 -r f15108153710 mod_muc_log/mod_muc_log.lua --- a/mod_muc_log/mod_muc_log.lua Sun Oct 18 23:24:42 2009 +0100 +++ b/mod_muc_log/mod_muc_log.lua Sun Oct 18 23:26:15 2009 +0100 @@ -270,7 +270,7 @@ if validateLogFolder() == false then return createDoc([[ - Muclogging is not configured correctly. Add a section to Host * "muc_log" and configure the value for the logging "folder".
+ MUC logging is not configured correctly. Add a section to Host * "muc_log" and configure the value for the logging "folder".
Like:
Host "*"
....
@@ -303,8 +303,8 @@ end function module.load() - config = config_get("*", "core", "muclogging"); - -- module:log("debug", "muclogging config: \n%s", dump(config)); + config = config_get("*", "core", "muc_log"); + -- module:log("debug", "muc_log config: \n%s", dump(config)); httpserver.new_from_config({ config.http_port or true }, handle_request, { base = "muc_log" }); return validateLogFolder();