diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-18 22:40:23 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-18 22:40:23 +0000 |
commit | d73e81900b49267c5dbe73c536a4c2c1793b61cb (patch) | |
tree | 4d0138067bbfbc2c9bee60826720d036543a48fc | |
parent | 49e7fdc3641d412592fe905ab7a6ed15cfbf72c1 (diff) | |
download | prosody-d73e81900b49267c5dbe73c536a4c2c1793b61cb.tar.gz prosody-d73e81900b49267c5dbe73c536a4c2c1793b61cb.zip |
Small fix for servermanager
-rw-r--r-- | core/servermanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/servermanager.lua b/core/servermanager.lua index 99eb4c23..8cbf2f12 100644 --- a/core/servermanager.lua +++ b/core/servermanager.lua @@ -2,7 +2,7 @@ local st = require "util.stanza"; local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas'; -require "modulemanager" +local modulemanager = require "core.modulemanager"; -- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.) function handle_stanza(origin, stanza) |