# HG changeset patch # User jbe # Date 1425246966 -3600 # Node ID 8f028a0aa114a0de376617be2a216bcb94d1aaf9 # Parent e60ef3334d9212e76b49f59af436415988c6bf7f Bug in request.get_param_strings{...} fixed, which caused request._http_request.post_params to be corrupted diff -r e60ef3334d92 -r 8f028a0aa114 framework/env/request/get_param_strings.lua --- a/framework/env/request/get_param_strings.lua Sun Mar 01 21:42:50 2015 +0100 +++ b/framework/env/request/get_param_strings.lua Sun Mar 01 22:56:06 2015 +0100 @@ -9,7 +9,7 @@ --]]-- -local function merge_params(include, tbl, params_list) +local function merge_params(tbl, params_list, include) for key, values in pairs(tbl) do if not include and string.match(key, "^_webmcp_") then -- do nothing