Changeset

1320:9c736b993e07

modulemanager: module:log() -> self:log() fix
author Matthew Wild <mwild1@gmail.com>
date Sat, 06 Jun 2009 17:15:26 +0100
parents 1319:812c028a877d
children 1321:0698d0d39b35
files core/modulemanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/modulemanager.lua	Sat Jun 06 17:08:47 2009 +0100
+++ b/core/modulemanager.lua	Sat Jun 06 17:15:26 2009 +0100
@@ -378,7 +378,7 @@
 		-- If only 2 options then they specified no xmlns
 		xmlns, name, handler, priority = nil, xmlns, name, handler;
 	elseif not (handler and name and xmlns) then
-		module:log("warn", "Error: Insufficient parameters to module:hook_stanza()");
+		self:log("warn", "Error: Insufficient parameters to module:hook_stanza()");
 		return;
 	end
 	return api.hook(self, "stanza/"..(xmlns and (xmlns..":") or "")..name, function (data) return handler(data.origin, data.stanza, data); end, priority);