# HG changeset patch # User jbe # Date 1498962140 -7200 # Node ID 3b4dbabca31f0f1972550a5390280eeb77a59f50 # Parent 7eec5b604b00119a03a26ce3b603a54e6c50223e Bugfix in request.handler(...) for allowing actions to directly return content diff -r 7eec5b604b00 -r 3b4dbabca31f framework/env/request/handler.lua --- a/framework/env/request/handler.lua Fri Jun 30 17:01:04 2017 +0200 +++ b/framework/env/request/handler.lua Sun Jul 02 04:22:20 2017 +0200 @@ -201,7 +201,7 @@ end end - if not request.get_redirect_data() then + if not (request.get_redirect_data() or slot.layout_is_set()) then request.process_forward() local view = request.get_view() if string.find(view, "^_") then