From a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 27 Nov 2008 03:12:12 +0000 Subject: Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store. --- plugins/mod_time.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/mod_time.lua') diff --git a/plugins/mod_time.lua b/plugins/mod_time.lua index bf079692..68224421 100644 --- a/plugins/mod_time.lua +++ b/plugins/mod_time.lua @@ -7,7 +7,7 @@ local legacy = require "util.datetime".legacy; require "core.discomanager".set("time", "urn:xmpp:time"); -add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time", +module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time", function(session, stanza) if stanza.attr.type == "get" then session.send(st.reply(stanza):tag("time", {xmlns="urn:xmpp:time"}) @@ -20,7 +20,7 @@ add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time", require "core.discomanager".set("time", "jabber:iq:time"); -add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time", +module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time", function(session, stanza) if stanza.attr.type == "get" then session.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"}) -- cgit v1.2.3