# HG changeset patch # User jbe # Date 1427396953 -3600 # Node ID ffdd32b48296044dd19bb520027bb0138edb6051 # Parent 5c5f264d123ed8761f40b2a47d0c289e98b44993 Bugfix in request.get_param_strings{...} which caused an empty table to be returned diff -r 5c5f264d123e -r ffdd32b48296 framework/env/request/get_param_strings.lua --- a/framework/env/request/get_param_strings.lua Thu Mar 26 20:07:49 2015 +0100 +++ b/framework/env/request/get_param_strings.lua Thu Mar 26 20:09:13 2015 +0100 @@ -10,7 +10,7 @@ --]]-- local function merge_params(tbl, params_list, include) - for key, values in pairs(tbl) do + for key, values in pairs(params_list) do if not include and string.match(key, "^_webmcp_") then -- do nothing elseif string.match(key, "%[%]$") then