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
bug #2255 do not override the status code if it is already set (xabbuh)
This PR was merged into the 2.x branch.
Discussion
----------
do not override the status code if it is already set
Commits
-------
e8d0314 do not override the status code if it is already set
'form key form not bound' => [Response::HTTP_OK, true, false, true, Response::HTTP_OK],
146
+
'form key form is bound and invalid' => [Response::HTTP_FORBIDDEN, true, true, false, Response::HTTP_OK],
147
+
'form key form is bound and invalid and status code in view is set' => [Response::HTTP_FORBIDDEN, true, true, false, Response::HTTP_OK, Response::HTTP_CREATED],
148
+
'form key form bound and valid' => [Response::HTTP_OK, true, true, true, Response::HTTP_OK],
149
+
'form key null form bound and valid' => [Response::HTTP_OK, true, true, true, Response::HTTP_OK],
0 commit comments