Skip to content

Commit

Permalink
fix: ResponseHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
damikael committed Jun 20, 2024
1 parent 36f2134 commit cc9fc8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Response/ResponseHandlerPlain.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function sendResponse(string $redirect_uri, object $data, string $state)
{
echo "<form name='spidauth' action='" . $redirect_uri . "' method='POST'>";
foreach ($data as $attribute => $value) {
echo "<input type='hidden' name='" . $attribute . "' value='" . $value . "' />";
echo "<input type='hidden' name='" . $attribute . "' value=\"" . $value . "\" />";
}
echo "<input type='hidden' name='state' value='" . $state . "' />";
echo "</form>";
Expand Down

0 comments on commit cc9fc8e

Please sign in to comment.