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

added some comments about incoming parameters... from an alternative workcopy, i had to checkin

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@167 44740490-163a-0410-bde0-09ae8108e29a
parent 368a55f0
No related branches found
No related tags found
No related merge requests found
...@@ -20,9 +20,18 @@ $session = SimpleSAML_Session::getInstance(true); ...@@ -20,9 +20,18 @@ $session = SimpleSAML_Session::getInstance(true);
$logger = new SimpleSAML_Logger(); $logger = new SimpleSAML_Logger();
/*
* Incomming URL parameters
*
* idpentityid The entityid of the wanted IdP to authenticate with. If not provided will use default.
* spentityid The entityid of the SP config to use. If not provided will use default to host.
*
*/
$logger->log(LOG_INFO, $session->getTrackID(), 'SAML2.0', 'SP.initSSO', 'EVENT', 'Access', $logger->log(LOG_INFO, $session->getTrackID(), 'SAML2.0', 'SP.initSSO', 'EVENT', 'Access',
'Accessing SAML 2.0 SP initSSO script'); 'Accessing SAML 2.0 SP initSSO script');
try { try {
$idpentityid = isset($_GET['idpentityid']) ? $_GET['idpentityid'] : $config->getValue('default-saml20-idp') ; $idpentityid = isset($_GET['idpentityid']) ? $_GET['idpentityid'] : $config->getValue('default-saml20-idp') ;
......
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