From 6f00abf3272f89ab0f836064f28a8d88ee48e9cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Mon, 17 Sep 2007 15:37:02 +0000
Subject: [PATCH] Adding invisible html in browser/post

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@9 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Bindings/Shib13/HTTPPost.php | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php b/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
index 21409b26d..ec7c202d8 100644
--- a/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
+++ b/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
@@ -135,6 +135,16 @@ class SimpleSAML_Bindings_Shib13_HTTPPost {
 		# openssl req -new -key server.key -out server.csr
 		# openssl x509 -req -days 60 -in server.csr -signkey server.key -out server.crt
 		
+		$p = new SimpleSAML_XHTML_Template($this->configuration, 'post.php');
+	
+		$p->data['RelayStateName'] = 'TARGET';
+		$p->data['RelayState'] = $relayState;
+		$p->data['destination'] = $destination;
+		$p->data['response'] = base64_encode($response);
+		
+		$p->show();
+		/*
+		
 		
 		
 		echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
@@ -165,6 +175,7 @@ class SimpleSAML_Bindings_Shib13_HTTPPost {
 		
 		</body>
 		</html>';
+		*/
 		
 	}
 	
-- 
GitLab