Mercurial > prosody-hg
diff plugins/mod_muc.lua @ 1042:a3d77353c18a
mod_*: Fix a load of global accesses
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 22 Apr 2009 21:32:23 +0100 |
| parents | 8bc06338aac3 |
| children | a970f691e42d |
line wrap: on
line diff
--- a/plugins/mod_muc.lua Wed Apr 22 20:52:27 2009 +0100 +++ b/plugins/mod_muc.lua Wed Apr 22 21:32:23 2009 +0100 @@ -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;
