From 2386d0d5d39476b293482fc54eb53050210a59bf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20P=C3=A9rez=20Crespo?= <jaime.perez@uninett.no>
Date: Thu, 20 Sep 2012 10:18:45 +0000
Subject: [PATCH] Fixed typo in modules/saml/lib/Message.php, addSign().

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3165 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/saml/lib/Message.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/saml/lib/Message.php b/modules/saml/lib/Message.php
index bbe6bea32..6e90d65ce 100644
--- a/modules/saml/lib/Message.php
+++ b/modules/saml/lib/Message.php
@@ -21,7 +21,7 @@ class sspmod_saml_Message {
 
 		$keyArray = SimpleSAML_Utilities::loadPrivateKey($srcMetadata, TRUE);
 		$certArray = SimpleSAML_Utilities::loadPublicKey($srcMetadata, FALSE);
-		$ = $srcMetadata->getString('signature.algorithm', XMLSecurityKey::RSA_SHA1);
+		$algo = $srcMetadata->getString('signature.algorithm', XMLSecurityKey::RSA_SHA1);
 
 		$privateKey = new XMLSecurityKey($algo, array('type' => 'private'));
 		if (array_key_exists('password', $keyArray)) {
-- 
GitLab