diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
commit | 2d2414f199a416409e84a3ef9c38a84ea0ba825b (patch) | |
tree | dc905cc58daf6473950071c0886043fca13df861 /plugins/mod_version.lua | |
parent | fcf33a735bd454e7d755c36be93e011ff5754283 (diff) | |
download | prosody-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_version.lua')
-rw-r--r-- | plugins/mod_version.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index e16d8aa7..0b7ebfaa 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -25,7 +25,7 @@ local log = require "util.logger".init("mod_version"); local xmlns_version = "jabber:iq:version" -require "core.discomanager".set("version", xmlns_version); +module:add_feature(xmlns_version); local function handle_version_request(session, stanza) if stanza.attr.type == "get" then |