summaryrefslogtreecommitdiffstats
path: root/modules/exampleauth/lib/Auth
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2008-10-27 09:47:50 +0000
committerOlav Morken <olav.morken@uninett.no>2008-10-27 09:47:50 +0000
commitf1a275523cbca8c90c1cd2b1946e97122da8e761 (patch)
tree551771deeee81375f4aa0991f0fd67d69f281234 /modules/exampleauth/lib/Auth
parentbdb1181b5de8a8388d7a78fd9a7d70a173ac5801 (diff)
downloadsimplesamlphp-f1a275523cbca8c90c1cd2b1946e97122da8e761.zip
simplesamlphp-f1a275523cbca8c90c1cd2b1946e97122da8e761.tar.gz
simplesamlphp-f1a275523cbca8c90c1cd2b1946e97122da8e761.tar.bz2
exampleauth/Static: Fix bug in constructor.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@945 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'modules/exampleauth/lib/Auth')
-rw-r--r--modules/exampleauth/lib/Auth/Source/Static.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/exampleauth/lib/Auth/Source/Static.php b/modules/exampleauth/lib/Auth/Source/Static.php
index c2a07cc..324c193 100644
--- a/modules/exampleauth/lib/Auth/Source/Static.php
+++ b/modules/exampleauth/lib/Auth/Source/Static.php
@@ -35,7 +35,7 @@ class sspmod_exampleauth_Auth_Source_Static extends SimpleSAML_Auth_Source {
/* Parse attributes. */
try {
- $this->attributes = SimpleSAML_Utilities::parseAttributes($attributes);
+ $this->attributes = SimpleSAML_Utilities::parseAttributes($config);
} catch(Exception $e) {
throw new Exception('Invalid attributes for authentication source ' .
$this->authId . ': ' . $e->getMessage());