# HG changeset patch # User jbe # Date 1425241015 -3600 # Node ID 36c3a7518902d9810459c036b0cb80ecc2f50462 # Parent ab9b93a26d25b55c2bfd563301fc005f7cce2eca Added missing local declaration in framework/env/request/process.lua diff -r ab9b93a26d25 -r 36c3a7518902 framework/env/request/process.lua --- a/framework/env/request/process.lua Sun Mar 01 21:10:59 2015 +0100 +++ b/framework/env/request/process.lua Sun Mar 01 21:16:55 2015 +0100 @@ -50,7 +50,7 @@ action = request.get_action(), } if not request.is_rerouted() then - local routing_mode, routing_module, routing_view + local routing_mode, routing_module, routing_view, routing_anchor routing_mode = request._http_request.post_params["_webmcp_routing." .. action_status .. ".mode"] routing_module = request._http_request.post_params["_webmcp_routing." .. action_status .. ".module"] routing_view = request._http_request.post_params["_webmcp_routing." .. action_status .. ".view"]