# HG changeset patch # User Dan # Date 1257776465 18000 # Node ID 1303cf9c594c0dd1bbe2d694d88b0e1dc493ebad # Parent b00055a88867c0e8180587b6cc9cb72bbd9547ae Removed lockout check, as it is now done in the login preprocess layer. diff -r b00055a88867 -r 1303cf9c594c plugins/yubikey/auth.php --- a/plugins/yubikey/auth.php Wed Aug 19 01:30:04 2009 -0400 +++ b/plugins/yubikey/auth.php Mon Nov 09 09:21:05 2009 -0500 @@ -30,13 +30,7 @@ $userdata['yubikey_otp'] = $userdata['password']; } - // Look for a lockout - $lockout_info = $session->get_lockout_info($lockdata); - if ( $lockout_info['locked_out'] ) - { - // pass on to normal auth so the lockout can be sent back properly - return null; - } + // Lockouts removed from here - they're done during preprocessing now. if ( !empty($userdata['username']) ) {