From 5157a9e8c27736d321d1eecfa65979bf4ec21e6c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Thu, 17 Jan 2008 11:20:48 +0000
Subject: [PATCH] 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
---
 www/saml2/sp/initSSO.php | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/www/saml2/sp/initSSO.php b/www/saml2/sp/initSSO.php
index 60d2060ac..c78a49b87 100644
--- a/www/saml2/sp/initSSO.php
+++ b/www/saml2/sp/initSSO.php
@@ -20,9 +20,18 @@ $session = SimpleSAML_Session::getInstance(true);
 $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', 
 	'Accessing SAML 2.0 SP initSSO script');
 
+
 try {
 
 	$idpentityid = isset($_GET['idpentityid']) ? $_GET['idpentityid'] : $config->getValue('default-saml20-idp') ;
-- 
GitLab