diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-26 03:29:06 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-26 03:29:06 +0000 |
commit | 9cfa2fe191348aa9e5800cde5b05eab8f6868100 (patch) | |
tree | 280afe4c6629378b30171c44ff869e8f634f39e2 /plugins/mod_uptime.lua | |
parent | 78cffc8a02012c14644a08fb07dd05c760dcba06 (diff) | |
parent | f68d335729ced9399427793ef17de847f21f8d4d (diff) | |
download | prosody-9cfa2fe191348aa9e5800cde5b05eab8f6868100.tar.gz prosody-9cfa2fe191348aa9e5800cde5b05eab8f6868100.zip |
Merge from waqas
Diffstat (limited to 'plugins/mod_uptime.lua')
-rw-r--r-- | plugins/mod_uptime.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_uptime.lua b/plugins/mod_uptime.lua index 043f6514..9c2cb45d 100644 --- a/plugins/mod_uptime.lua +++ b/plugins/mod_uptime.lua @@ -6,6 +6,8 @@ local t_concat = table.concat; local start_time = os.time();
+require "core.discomanager".set("uptime", "jabber:iq:last");
+
add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
function (origin, stanza)
if stanza.tags[1].name == "query" then
@@ -20,5 +22,3 @@ add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last", end
end
end);
-
-
|