aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_time.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-27 03:12:12 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-27 03:12:12 +0000
commita153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1 (patch)
treed156f4bd25ecad253efb6417bf04bf93b9a5e637 /plugins/mod_time.lua
parentd70ee791d524173cd0c203f8c9fbfabeb5fd9816 (diff)
downloadprosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.tar.gz
prosody-a153b3c26704686bf9a3f2255d9aeb3c5f6aa2b1.zip
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Diffstat (limited to 'plugins/mod_time.lua')
-rw-r--r--plugins/mod_time.lua4
1 files changed, 2 insertions, 2 deletions
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"})