# HG changeset patch # User jbe # Date 1425241136 -3600 # Node ID 4748410d27acf7fd87386983423059a028dfba6a # Parent 36c3a7518902d9810459c036b0cb80ecc2f50462 Added missing pairs(...) call in for-loop in request.process() implementation diff -r 36c3a7518902 -r 4748410d27ac framework/env/request/process.lua --- a/framework/env/request/process.lua Sun Mar 01 21:16:55 2015 +0100 +++ b/framework/env/request/process.lua Sun Mar 01 21:18:56 2015 +0100 @@ -66,7 +66,7 @@ assert(routing_view, "Routing information has no view.") if routing_mode == "redirect" then local routing_params = {} - for key, value in request.get_param_strings{ method="POST", include_internal=true } do + for key, value in pairs(request.get_param_strings{ method="POST", include_internal=true }) do local status, stripped_key = string.match( key, "^_webmcp_routing%.([^%.]*)%.params%.(.*)$" )