core/configmanager.lua
changeset 6720 4fecfc81dac1
parent 6719 2b78754b0f1c
child 6721 be98ebe87eef
--- a/core/configmanager.lua	Mon May 18 19:06:34 2015 +0100
+++ b/core/configmanager.lua	Mon May 18 19:07:06 2015 +0100
@@ -128,11 +128,11 @@
 			Host = true, host = true, VirtualHost = true,
 			Component = true, component = true,
 			Include = true, include = true, RunScript = true }, {
-				__index = function (t, k)
+				__index = function (_, k)
 					return rawget(_G, k);
 				end,
-				__newindex = function (t, k, v)
-					set(config, env.__currenthost or "*", k, v);
+				__newindex = function (_, k, v)
+					set(config_table, env.__currenthost or "*", k, v);
 				end
 		});