diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-08-03 10:56:17 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-08-03 10:56:17 +0100 |
commit | da43b0a563531cf09a082e1fe365d336f907eec5 (patch) | |
tree | 65995ab6d3e99d2aa431ef2e82a57fcb3dede292 | |
parent | c227e09b531b8d74a74a43a3bf6bc778dba55e84 (diff) | |
download | prosody-da43b0a563531cf09a082e1fe365d336f907eec5.tar.gz prosody-da43b0a563531cf09a082e1fe365d336f907eec5.zip |
componentmanager: Remove dependency on eventmanager
-rw-r--r-- | core/componentmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua index 48e27984..129c2ba8 100644 --- a/core/componentmanager.lua +++ b/core/componentmanager.lua @@ -12,7 +12,7 @@ local certmanager = require "core.certmanager"; local configmanager = require "core.configmanager"; local modulemanager = require "core.modulemanager"; local jid_split = require "util.jid".split; -local fire_event = require "core.eventmanager".fire_event; +local fire_event = prosody.events.fire_event; local events_new = require "util.events".new; local st = require "util.stanza"; local prosody, hosts = prosody, prosody.hosts; |