mod_admin_telnet: config:get: Assume the global section if only one argument is given

This commit is contained in:
Kim Alvefur 2019-01-04 13:39:13 +01:00
parent 11b2a79872
commit 5fb717bbce

View file

@ -496,6 +496,9 @@ function def_env.config:load(filename, format)
end
function def_env.config:get(host, key)
if key == nil then
host, key = "*", host;
end
local config_get = require "core.configmanager".get
return true, tostring(config_get(host, key));
end