From 8a321bb5669930a5b6ad14b93ba3d11587ad2d87 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Mon, 10 Nov 2008 13:00:01 +0000 Subject: [PATCH] modules/saml2: Fix wrong variable name. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@979 44740490-163a-0410-bde0-09ae8108e29a --- modules/saml2/lib/Auth/Source/SP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/saml2/lib/Auth/Source/SP.php b/modules/saml2/lib/Auth/Source/SP.php index c559685d4..6d711c429 100644 --- a/modules/saml2/lib/Auth/Source/SP.php +++ b/modules/saml2/lib/Auth/Source/SP.php @@ -89,7 +89,7 @@ class sspmod_saml2_Auth_Source_SP extends SimpleSAML_Auth_Source { $req = $sr->generate($this->entityId, $idpMetadata['SingleSignOnService']); $httpredirect = new SimpleSAML_Bindings_SAML20_HTTPRedirect($config, $metadata); - $httpredirect->sendMessage($req, $this->entityid, $this->idp, $id); + $httpredirect->sendMessage($req, $this->entityId, $this->idp, $id); exit(0); } -- GitLab