summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Auth/Source.php
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2013-01-10 13:04:48 +0000
committerOlav Morken <olav.morken@uninett.no>2013-01-10 13:04:48 +0000
commit369d490fce21057808eae8da7eab8b1e85f53b21 (patch)
tree129881790a89b7dad8d808be956711fadc9cd510 /lib/SimpleSAML/Auth/Source.php
parent0a61790fd1ed7999f014733a19d31f1634959c44 (diff)
downloadsimplesamlphp-369d490fce21057808eae8da7eab8b1e85f53b21.zip
simplesamlphp-369d490fce21057808eae8da7eab8b1e85f53b21.tar.gz
simplesamlphp-369d490fce21057808eae8da7eab8b1e85f53b21.tar.bz2
SimpleSAML_Auth_Source::getSourcesOfType(): Fix typo in variable name.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3220 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SimpleSAML/Auth/Source.php')
-rw-r--r--lib/SimpleSAML/Auth/Source.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Auth/Source.php b/lib/SimpleSAML/Auth/Source.php
index 358cd17..802035e 100644
--- a/lib/SimpleSAML/Auth/Source.php
+++ b/lib/SimpleSAML/Auth/Source.php
@@ -56,7 +56,7 @@ abstract class SimpleSAML_Auth_Source {
$source = $config->getArray($id);
if (!array_key_exists(0, $source) || !is_string($source[0])) {
- throw new Exception('Invalid authentication source \'' . $authId .
+ throw new Exception('Invalid authentication source \'' . $id .
'\': First element must be a string which identifies the authentication source.');
}