core/modulemanager.lua

changeset 1320
9c736b993e07
parent 1319
812c028a877d
child 1321
0698d0d39b35
--- 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);

mercurial