Skip to content
Snippets Groups Projects
Commit 53c43f4f authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Missing show() call on template. This bug caused dropdown menu of disco for...

Missing show() call on template. This bug caused dropdown menu of disco for shib 1.3 sp to not work properly.



git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@199 44740490-163a-0410-bde0-09ae8108e29a
parent 0c51d274
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ if (isset($_GET['idpentityid'])) {
$returnurl = SimpleSAML_Utilities::addURLparameter($return, $returnidparam . '=' . $idpentityid);
SimpleSAML_Utilities::redirect($returnurl);
}
......@@ -56,6 +56,7 @@ if ($config->getValue('idpdisco.layout') == 'dropdown') {
$t->data['entityID'] = $spentityid;
$t->data['preferedidp'] = (!empty($_COOKIE['preferedidp'])) ? $_COOKIE['preferedidp'] : null;
$t->data['urlpattern'] = htmlentities(SimpleSAML_Utilities::selfURLNoQuery());
$t->show();
}
else
{
......
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