diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-06-06 17:15:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-06-06 17:15:26 +0100 |
commit | 650013e7ec39a3c08ba6f4a2e36076d5d91d12a1 (patch) | |
tree | 179ee795678c35251b8dd69314106845f4c89b39 /core/modulemanager.lua | |
parent | ca4e395f0cb12ca39f9220feb2f984ad0be9d274 (diff) | |
download | prosody-650013e7ec39a3c08ba6f4a2e36076d5d91d12a1.tar.gz prosody-650013e7ec39a3c08ba6f4a2e36076d5d91d12a1.zip |
modulemanager: module:log() -> self:log() fix
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 6d857d59..9bcd64e4 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -378,7 +378,7 @@ function api:hook_stanza(xmlns, name, handler, priority) -- 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); |