Skip to content

Commit 1b415de

Browse files
authored
Merge pull request #1188 from OpenConext/bugfix/return-400-status-code-on-ss-validation-issue
Return HTTP status code 400 on validation error
2 parents ce5f01c + 243b7f9 commit 1b415de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenConext/EngineBlockBundle/Controller/IdentityProviderController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public function performRequestAccessAction(Request $request)
194194
$viewData
195195
);
196196

197-
return new Response($body);
197+
return new Response($body, 400);
198198
}
199199

200200
$postedVariables = $request->request;

0 commit comments

Comments
 (0)