From c9aa13a19c7db5d02311475e0bd0514be143eb0c Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Fri, 7 Aug 2009 07:52:47 +0000
Subject: [PATCH] SAML2: Remove NotBefore from <SubjectConfirmationData>

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1637 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SAML2/Assertion.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/SAML2/Assertion.php b/lib/SAML2/Assertion.php
index be4b8ea35..e08c87e5a 100644
--- a/lib/SAML2/Assertion.php
+++ b/lib/SAML2/Assertion.php
@@ -948,9 +948,6 @@ class SAML2_Assertion implements SAML2_SignedElement {
 		$scd = $root->ownerDocument->createElementNS(SAML2_Const::NS_SAML, 'saml:SubjectConfirmationData');
 		$sc->appendChild($scd);
 
-		if ($this->notBefore !== NULL) {
-			$scd->setAttribute('NotBefore', gmdate('Y-m-d\TH:i:s\Z', $this->notBefore));
-		}
 		if ($this->notOnOrAfter !== NULL) {
 			$scd->setAttribute('NotOnOrAfter', gmdate('Y-m-d\TH:i:s\Z', $this->notOnOrAfter));
 		}
-- 
GitLab