From b3181a859b920e1de879f010b8424aca19cc31ee Mon Sep 17 00:00:00 2001
From: Jacob Christiansen <jach@wayf.dk>
Date: Wed, 1 Dec 2010 14:29:53 +0000
Subject: [PATCH] Allow the IDPList parameter to be posted to the discovery
 service

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2676 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/XHTML/IdPDisco.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/SimpleSAML/XHTML/IdPDisco.php b/lib/SimpleSAML/XHTML/IdPDisco.php
index 88775555d..fb17ac156 100644
--- a/lib/SimpleSAML/XHTML/IdPDisco.php
+++ b/lib/SimpleSAML/XHTML/IdPDisco.php
@@ -139,8 +139,8 @@ class SimpleSAML_XHTML_IdPDisco {
 			$this->setIdPentityID = NULL;
 		}
 
-		if (array_key_exists('IDPList', $_GET)) {
-			$this->scopedIDPList = $_GET['IDPList'];
+		if (array_key_exists('IDPList', $_REQUEST)) {
+			$this->scopedIDPList = $_REQUEST['IDPList'];
 		}
 
 	}
-- 
GitLab