diff options
author | Andreas Åkre Solberg <andreas.solberg@uninett.no> | 2009-01-26 08:35:27 +0000 |
---|---|---|
committer | Andreas Åkre Solberg <andreas.solberg@uninett.no> | 2009-01-26 08:35:27 +0000 |
commit | ce694b16f2a1584837415106e530437bc788e0c0 (patch) | |
tree | d1f1f4d52db02742b742d9a31aeedcc281f0b843 /modules/authYubiKey/lib/Auth/Source/YubiKey.php | |
parent | 48d7a75fadda7cda8bfba4a298c170bae4f8f687 (diff) | |
download | simplesamlphp-ce694b16f2a1584837415106e530437bc788e0c0.zip simplesamlphp-ce694b16f2a1584837415106e530437bc788e0c0.tar.gz simplesamlphp-ce694b16f2a1584837415106e530437bc788e0c0.tar.bz2 |
wrong parameter name in yubico module
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1182 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'modules/authYubiKey/lib/Auth/Source/YubiKey.php')
-rw-r--r-- | modules/authYubiKey/lib/Auth/Source/YubiKey.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/authYubiKey/lib/Auth/Source/YubiKey.php b/modules/authYubiKey/lib/Auth/Source/YubiKey.php index 9262ac6..0bd2e1d 100644 --- a/modules/authYubiKey/lib/Auth/Source/YubiKey.php +++ b/modules/authYubiKey/lib/Auth/Source/YubiKey.php @@ -196,7 +196,7 @@ class sspmod_authYubiKey_Auth_Source_YubiKey extends SimpleSAML_Auth_Source { throw new SimpleSAML_Error_Error('WRONGUSERPASS', $e); } - SimpleSAML_Logger::info('YubiKey:' . $this->authId . ': YubiKey otp ' . $password . ' validated successfully: ' . $yubi->getLastResponse()); + SimpleSAML_Logger::info('YubiKey:' . $this->authId . ': YubiKey otp ' . $otp . ' validated successfully: ' . $yubi->getLastResponse()); return $attributes; } |