diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-28 16:29:00 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-28 16:29:00 +0100 |
commit | 54fc3f7da85c174d090d5eeba548302766b61769 (patch) | |
tree | e8cfc61a8bacd66520b45743ca31eeb82cddf081 | |
parent | b57c2e5fa00f6971aae91679011695b846648578 (diff) | |
download | prosody-54fc3f7da85c174d090d5eeba548302766b61769.tar.gz prosody-54fc3f7da85c174d090d5eeba548302766b61769.zip |
mod_s2s: Fix import of core_process_stanza. I don't know why I thought it was there (thanks Zash)
-rw-r--r-- | plugins/s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/s2s/mod_s2s.lua b/plugins/s2s/mod_s2s.lua index e40f35bd..f44ab43d 100644 --- a/plugins/s2s/mod_s2s.lua +++ b/plugins/s2s/mod_s2s.lua @@ -10,7 +10,7 @@ module:set_global(); local prosody = prosody; local hosts = prosody.hosts; -local core_process_stanza = prosody.core_process_stanza; +local core_process_stanza = core_process_stanza; local tostring, type = tostring, type; local t_insert = table.insert; |