mod_disco: Rearranged some lines, and added a FIXME comment
authorWaqas Hussain <waqas20@gmail.com>
Tue, 18 Aug 2009 12:44:42 +0500
changeset 1704 9b445d2427e2
parent 1703 b062ee7865fc
child 1705 99c9f59ed365
mod_disco: Rearranged some lines, and added a FIXME comment
plugins/mod_disco.lua
--- a/plugins/mod_disco.lua	Tue Aug 18 12:43:21 2009 +0500
+++ b/plugins/mod_disco.lua	Tue Aug 18 12:44:42 2009 +0500
@@ -7,12 +7,12 @@
 --
 
 local componentmanager_get_children = require "core.componentmanager".get_children;
+local st = require "util.stanza"
 
+module:add_identity("server", "im", "Prosody"); -- FIXME should be in the non-existing mod_router
 module:add_feature("http://jabber.org/protocol/disco#info");
 module:add_feature("http://jabber.org/protocol/disco#items");
 
-module:add_identity("server", "im", "Prosody");
-local st = require "util.stanza"
 module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(event)
 	local origin, stanza = event.origin, event.stanza;
 	if stanza.attr.type ~= "get" then return; end