diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-22 21:32:23 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-22 21:32:23 +0100 |
commit | ca9a9eb85ebb918983c845813c22c0e6d2464aa6 (patch) | |
tree | 680b1c655c3a4b97e14f5dd996a303ff28e122cd /plugins/mod_vcard.lua | |
parent | a54da72215f3216f3ae28846604bba20e483b831 (diff) | |
download | prosody-ca9a9eb85ebb918983c845813c22c0e6d2464aa6.tar.gz prosody-ca9a9eb85ebb918983c845813c22c0e6d2464aa6.zip |
mod_*: Fix a load of global accesses
Diffstat (limited to 'plugins/mod_vcard.lua')
-rw-r--r-- | plugins/mod_vcard.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_vcard.lua b/plugins/mod_vcard.lua index c4afb128..2e8aea02 100644 --- a/plugins/mod_vcard.lua +++ b/plugins/mod_vcard.lua @@ -8,13 +8,13 @@ -require "util.datamanager" -local datamanager = datamanager; +local hosts = _G.hosts; +local datamanager = require "util.datamanager" local st = require "util.stanza" local t_concat, t_insert = table.concat, table.insert; -require "util.jid" +local jid = require "util.jid" local jid_split = jid.split; module:add_feature("vcard-temp"); |