aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_time.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2008-12-04 20:16:30 +0500
committerWaqas Hussain <waqas20@gmail.com>2008-12-04 20:16:30 +0500
commit2d2414f199a416409e84a3ef9c38a84ea0ba825b (patch)
treedc905cc58daf6473950071c0886043fca13df861 /plugins/mod_time.lua
parentfcf33a735bd454e7d755c36be93e011ff5754283 (diff)
downloadprosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.tar.gz
prosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.zip
Change modules to use the new add_feature module API method.
This also fixes the bug causing disco features being added to every disco reply for every host.
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 9a61d90c..3d73623c 100644
--- a/plugins/mod_time.lua
+++ b/plugins/mod_time.lua
@@ -25,7 +25,7 @@ local legacy = require "util.datetime".legacy;
-- XEP-0202: Entity Time
-require "core.discomanager".set("time", "urn:xmpp:time");
+module:add_feature("urn:xmpp:time");
module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
function(session, stanza)
@@ -38,7 +38,7 @@ module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
-- XEP-0090: Entity Time (deprecated)
-require "core.discomanager".set("time", "jabber:iq:time");
+module:add_feature("jabber:iq:time");
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
function(session, stanza)