diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:11:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:11:27 +0100 |
commit | dfcb1b6c064e979fec62de68c40f8c10724de634 (patch) | |
tree | faffe6667ee10ff64676986473160da1bfb0798d /core/moduleapi.lua | |
parent | a068b1d383cec6efe572ade50a60df2f9d6f1de5 (diff) | |
download | prosody-dfcb1b6c064e979fec62de68c40f8c10724de634.tar.gz prosody-dfcb1b6c064e979fec62de68c40f8c10724de634.zip |
moduleapi: Import util.stanza required for module:broadcast()
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index 9e07d6a9..0cb1f1e7 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -16,6 +16,7 @@ local pluginloader = require "util.pluginloader"; local timer = require "util.timer"; local resolve_relative_path = require"util.paths".resolve_relative_path; local measure = require "core.statsmanager".measure; +local st = require "util.stanza"; local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat; local error, setmetatable, type = error, setmetatable, type; |