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_presence.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_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 3cac0973..dac86ae6 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -14,6 +14,7 @@ local t_concat, t_insert = table.concat, table.insert; local s_find = string.find; local tonumber = tonumber; +local core_post_stanza = prosody.core_post_stanza; local st = require "util.stanza"; local jid_split = require "util.jid".split; local jid_bare = require "util.jid".bare; |