# HG changeset patch # User Marco Cirillo # Date 1335730725 0 # Node ID 74bd7ebe57926160823d737bf6d27038fe3d4d0d # Parent 81d269f97ea28cd3220f919a1145b00a60f36ecd mod_server_status: fix code typo, get_option_array was used instead of get_option_string diff -r 81d269f97ea2 -r 74bd7ebe5792 mod_server_status/mod_server_status.lua --- a/mod_server_status/mod_server_status.lua Sun Apr 29 20:16:43 2012 +0000 +++ b/mod_server_status/mod_server_status.lua Sun Apr 29 20:18:45 2012 +0000 @@ -4,7 +4,7 @@ module:depends("http") module:set_global() -local base_path = module:get_option_array("server_status_basepath", "/server-status/") +local base_path = module:get_option_string("server_status_basepath", "/server-status/") local show_hosts = module:get_option_array("server_status_show_hosts", nil) local show_comps = module:get_option_array("server_status_show_comps", nil) local json_output = module:get_option_boolean("server_status_json", false)