# HG changeset patch # User Kim Alvefur # Date 1685697608 -7200 # Node ID 61b8d3eb91a4f5754d89532622667c87768a20bd # Parent 0005d420103033bdb11d8805ce6b933514d01712 mod_http_oauth2: Revert strict form check to allow consent of multiple scopes Untested commit breaks everything, news at 11 diff -r 0005d4201030 -r 61b8d3eb91a4 mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Fri Jun 02 11:03:57 2023 +0200 +++ b/mod_http_oauth2/mod_http_oauth2.lua Fri Jun 02 11:20:08 2023 +0200 @@ -551,7 +551,7 @@ and request.body and request.body ~= "" and request.headers.content_type == "application/x-www-form-urlencoded" - and strict_formdecode(request.body); + and http.formdecode(request.body); if type(form) ~= "table" then return {}; end