You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ticket #132 was closed prematurely citing existing use. requestargs continues to cause confusion as it suggests that request.args will be consulted, while actually consulting request.values. To fix:
Rename requestargs to requestvalues
Temporarily alias it back to requestargs
Audit all code that is using requestargs for POST requests and switch to requestvalues or requestform as appropriate
Drop the alias and rename requestquery to requestargs (retaining an alias)
The text was updated successfully, but these errors were encountered:
Ticket #132 was closed prematurely citing existing use.
requestargs
continues to cause confusion as it suggests thatrequest.args
will be consulted, while actually consultingrequest.values
. To fix:requestargs
torequestvalues
requestargs
requestargs
for POST requests and switch torequestvalues
orrequestform
as appropriaterequestquery
torequestargs
(retaining an alias)The text was updated successfully, but these errors were encountered: