aboutsummaryrefslogtreecommitdiffstats
path: root/core/configmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-03-23 04:14:52 +0100
committerKim Alvefur <zash@zash.se>2013-03-23 04:14:52 +0100
commit869da6c240dccfed8c43228ceb989af5faf6c8f1 (patch)
treefc52870bbca26966e739b1654dd7ff728fbbd9e0 /core/configmanager.lua
parent613c9b00c4e9073f74e53efaa1c31ae00a73eae4 (diff)
downloadprosody-869da6c240dccfed8c43228ceb989af5faf6c8f1.tar.gz
prosody-869da6c240dccfed8c43228ceb989af5faf6c8f1.zip
configmanager: Fix so unset variables are searched for in the global section
Diffstat (limited to 'core/configmanager.lua')
-rw-r--r--core/configmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua
index a0a1f817..e31dbd72 100644
--- a/core/configmanager.lua
+++ b/core/configmanager.lua
@@ -25,7 +25,7 @@ local config_mt = { __index = function (t, k) return rawget(t, "*"); end};
local config = setmetatable({ ["*"] = { } }, config_mt);
-- When host not found, use global
-local host_mt = { };
+local host_mt = { __index = function(_, k) return config["*"][k] end }
function getconfig()
return config;