This patch separates GET params and POST params. request.post_params # now returns POST params request.get_params # now returns GET params request.params # Compatibility method returning the result of post_params.merge(get_params)