diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-10-16 06:25:55 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-10-16 06:25:55 +0500 |
commit | bfd2418b3b85cde3aefcbd1950fb95267d43efb9 (patch) | |
tree | 7e7d1d33a4cd51dfb34cfa998ef33e331f20355e /core/modulemanager.lua | |
parent | bb984bbcf1c2323324c30ceb8a760f1ec8e529cc (diff) | |
download | prosody-bfd2418b3b85cde3aefcbd1950fb95267d43efb9.tar.gz prosody-bfd2418b3b85cde3aefcbd1950fb95267d43efb9.zip |
modulemanager: Removed add_iq_handler() from the plugin API.
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index e153d24b..5df17f05 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -355,9 +355,6 @@ function api:add_handler(origin_type, tag, xmlns, handler) _add_handler(self, origin_type, tag, xmlns, handler); end end -function api:add_iq_handler(origin_type, xmlns, handler) - self:add_handler(origin_type, "iq", xmlns, handler); -end function api:add_feature(xmlns) self:add_item("feature", xmlns); |