From 8595801627a3c0ca0932cf7183d2cac43f562aba Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Fri, 3 Apr 2009 07:20:02 +0000
Subject: [PATCH] SAML2: Remove debug code for jpegPhoto.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1458 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/XML/SAML20/AuthnResponse.php | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/lib/SimpleSAML/XML/SAML20/AuthnResponse.php b/lib/SimpleSAML/XML/SAML20/AuthnResponse.php
index fb67fc6ec..6b3a73cd2 100644
--- a/lib/SimpleSAML/XML/SAML20/AuthnResponse.php
+++ b/lib/SimpleSAML/XML/SAML20/AuthnResponse.php
@@ -416,18 +416,11 @@ class SimpleSAML_XML_SAML20_AuthnResponse extends SimpleSAML_XML_AuthnResponse {
 			}
 
 			if ($base64) {
-				
-				if ($name != 'jpegPhoto') {				
-					foreach(explode('_', $value) AS $v) {
-	
-							$this->attributes[$name][] = base64_decode($v);
-					}
 
-				} else {
-					$this->attributes[$name][] = $value;
-					file_put_contents('/tmp/image2.jpg', $value);
+				foreach(explode('_', $value) AS $v) {
+					$this->attributes[$name][] = base64_decode($v);
 				}
-				
+
 			} else {
 				$this->attributes[$name][] = $value;
 			}
-- 
GitLab