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_console.lua | |
parent | a54da72215f3216f3ae28846604bba20e483b831 (diff) | |
download | prosody-ca9a9eb85ebb918983c845813c22c0e6d2464aa6.tar.gz prosody-ca9a9eb85ebb918983c845813c22c0e6d2464aa6.zip |
mod_*: Fix a load of global accesses
Diffstat (limited to 'plugins/mod_console.lua')
-rw-r--r-- | plugins/mod_console.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua index bd0095d7..502e0d06 100644 --- a/plugins/mod_console.lua +++ b/plugins/mod_console.lua @@ -8,6 +8,7 @@ module.host = "*"; +local hosts = _G.hosts; local connlisteners_register = require "net.connlisteners".register; local console_listener = { default_port = 5582; default_mode = "*l"; }; |