From 426655a95009801601f004d811848944270bd4d8 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Mon, 4 Aug 2008 11:47:10 +0000
Subject: [PATCH] Consent: Include spmetadata as parameter to consent template.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@795 44740490-163a-0410-bde0-09ae8108e29a
---
 www/saml2/idp/SSOService.php  | 1 +
 www/shib13/idp/SSOService.php | 1 +
 2 files changed, 2 insertions(+)

diff --git a/www/saml2/idp/SSOService.php b/www/saml2/idp/SSOService.php
index 1c0ab7460..8fe095a01 100644
--- a/www/saml2/idp/SSOService.php
+++ b/www/saml2/idp/SSOService.php
@@ -277,6 +277,7 @@ if($needAuth && !$isPassive) {
 				$t->data['sp_name'] = $sp_name;
 				$t->data['idp_name'] = (isset($idpmetadata['name']) ? $idpmetadata['name'] : $idpentityid);
 				$t->data['spentityid'] = $spentityid;
+				$t->data['spmetadata'] = $spmetadata;
 				$t->data['attributes'] = $filteredattributes;
 				$t->data['consenturl'] = SimpleSAML_Utilities::selfURLNoQuery();
 				$t->data['requestid'] = $authId;
diff --git a/www/shib13/idp/SSOService.php b/www/shib13/idp/SSOService.php
index 3862d2daa..3744e5144 100644
--- a/www/shib13/idp/SSOService.php
+++ b/www/shib13/idp/SSOService.php
@@ -189,6 +189,7 @@ if (!$session->isAuthenticated($authority) ) {
 				$t->data['sp_name'] = $sp_name;
 				$t->data['idp_name'] = (isset($idpmetadata['name']) ? $idpmetadata['name'] : $idpentityid);
 				$t->data['spentityid'] = $spentityid;
+				$t->data['spmetadata'] = $spmetadata;
 				$t->data['attributes'] = $filteredattributes;
 				$t->data['consenturl'] = SimpleSAML_Utilities::selfURLNoQuery();
 				$t->data['requestid'] = $authId;
-- 
GitLab