Skip to content

Commit

Permalink
fix: pass state to proxy home
Browse files Browse the repository at this point in the history
  • Loading branch information
damikael authored Oct 17, 2023
2 parents 6a8c43b + dd543dc commit 8f5c500
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"config": {
"version": "3.18.1",
"version": "3.18.2",
"allow-plugins": {
"simplesamlphp/composer-module-installer": true
}
Expand Down
3 changes: 2 additions & 1 deletion setup/sdk/proxy.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
header('Location: ' . PROXY_HOME .
'?client_id=' . $client_id .
'&level=' . $spidcie_level .
'&redirect_uri=' . $redirect_uri);
'&redirect_uri=' . $redirect_uri .
'&state=' . $state);
} else {
http_response_code(404);
if(DEBUG) echo "idp not found";
Expand Down

0 comments on commit 8f5c500

Please sign in to comment.