aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_vcard.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-04-29 02:08:12 +0100
committerMatthew Wild <mwild1@gmail.com>2009-04-29 02:08:12 +0100
commite241b85a56b96bbda1719448a08e68cf5b8eed56 (patch)
tree5564cfe35e899b0932ba57718ae84eccf417c7c8 /plugins/mod_vcard.lua
parent3ba4121e11d4696a40e59486db4f005bf2c7eccd (diff)
downloadprosody-e241b85a56b96bbda1719448a08e68cf5b8eed56.tar.gz
prosody-e241b85a56b96bbda1719448a08e68cf5b8eed56.zip
mod_*: Fix many unnecessary global accesses in modules (already committed to main repo)
Diffstat (limited to 'plugins/mod_vcard.lua')
-rw-r--r--plugins/mod_vcard.lua6
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");