diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-26 04:33:17 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-07-26 04:33:17 +0200 |
commit | 790e0bb9b426413f10e5efcd0dfd680e9bf20de2 (patch) | |
tree | ad383c5a7b1d99bcaef9b8235b4746c304f3c569 /plugins/mod_roster.lua | |
parent | 6576b53bed0e9f7d0a4d0ee9bb300093e81024df (diff) | |
download | prosody-790e0bb9b426413f10e5efcd0dfd680e9bf20de2.tar.gz prosody-790e0bb9b426413f10e5efcd0dfd680e9bf20de2.zip |
mod_admin_adhoc, mod_admin_telnet, mod_bosh, mod_c2s, mod_component, mod_pep, mod_presence, mod_roster, mod_s2s: Import core_post_stanza from the global prosody table.
Diffstat (limited to 'plugins/mod_roster.lua')
-rw-r--r-- | plugins/mod_roster.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_roster.lua b/plugins/mod_roster.lua index 96cc15f2..bfb2d927 100644 --- a/plugins/mod_roster.lua +++ b/plugins/mod_roster.lua @@ -18,7 +18,7 @@ local pairs, ipairs = pairs, ipairs; local rm_remove_from_roster = require "core.rostermanager".remove_from_roster; local rm_add_to_roster = require "core.rostermanager".add_to_roster; local rm_roster_push = require "core.rostermanager".roster_push; -local core_post_stanza = core_post_stanza; +local core_post_stanza = prosody.core_post_stanza; module:add_feature("jabber:iq:roster"); |