Skip to content
Snippets Groups Projects
Commit d616d515 authored by Jacob Christiansen's avatar Jacob Christiansen
Browse files

Fixed uninitialized variabel

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2696 44740490-163a-0410-bde0-09ae8108e29a
parent 9c33d501
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ if (!array_key_exists('StateId', $_REQUEST)) {
$id = $_REQUEST['StateId'];
$state = SimpleSAML_Auth_State::loadState($id, 'consent:request');
$spentityid = $state['core:SP'];
if (array_key_exists('yes', $_REQUEST)) {
/* The user has pressed the yes-button. */
......@@ -156,5 +156,3 @@ if (array_key_exists('consent:hiddenAttributes', $state)) {
$t->show();
exit;
?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment