coaster
coaster copied to clipboard
Swap requestargs and requestquery
trafficstars
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
requestargstorequestvalues - Temporarily alias it back to
requestargs - Audit all code that is using
requestargsfor POST requests and switch torequestvaluesorrequestformas appropriate - Drop the alias and rename
requestquerytorequestargs(retaining an alias)