aboutsummaryrefslogtreecommitdiffstats
path: root/core/stanza_router.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-05-14 17:58:51 +0200
committerKim Alvefur <zash@zash.se>2012-05-14 17:58:51 +0200
commit1ef9002349617281dd0ea8de565ba07b0d712073 (patch)
treef1a21a2f0d1c4c04aacb1665e81cf4acbef9f351 /core/stanza_router.lua
parent17729a0e3b03482231f09164ce9ac1fe4984715b (diff)
downloadprosody-1ef9002349617281dd0ea8de565ba07b0d712073.tar.gz
prosody-1ef9002349617281dd0ea8de565ba07b0d712073.zip
prosody, stanza_router: Load stanza_router earlier. Put routing functions in the global prosody table. Fixes module:send()
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r--core/stanza_router.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 50044766..6e8ac6b3 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -204,3 +204,6 @@ function core_route_stanza(origin, stanza)
end
end
end
+prosody.core_process_stanza = core_process_stanza;
+prosody.core_post_stanza = core_post_stanza;
+prosody.core_route_stanza = core_route_stanza;