diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-29 02:08:12 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-29 02:08:12 +0100 |
commit | e241b85a56b96bbda1719448a08e68cf5b8eed56 (patch) | |
tree | 5564cfe35e899b0932ba57718ae84eccf417c7c8 /plugins/mod_muc.lua | |
parent | 3ba4121e11d4696a40e59486db4f005bf2c7eccd (diff) | |
download | prosody-e241b85a56b96bbda1719448a08e68cf5b8eed56.tar.gz prosody-e241b85a56b96bbda1719448a08e68cf5b8eed56.zip |
mod_*: Fix many unnecessary global accesses in modules (already committed to main repo)
Diffstat (limited to 'plugins/mod_muc.lua')
-rw-r--r-- | plugins/mod_muc.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_muc.lua b/plugins/mod_muc.lua index 2f63ed0c..ffa0bb85 100644 --- a/plugins/mod_muc.lua +++ b/plugins/mod_muc.lua @@ -6,6 +6,8 @@ -- COPYING file in the source package for more information. -- +local datamanager = require "util.datamanager"; +local datetime = require "util.datetime"; local register_component = require "core.componentmanager".register_component; local deregister_component = require "core.componentmanager".deregister_component; |