Google Authenticator - Version 0.51

Version Description

  • Fix a regression that broke app passwords
Download this release

Release Info

Developer ivankk
Plugin Icon wp plugin Google Authenticator
Version 0.51
Comparing to
See all releases

Code changes from version 0.50 to 0.51

Files changed (2) hide show
  1. google-authenticator.php +1 -5
  2. readme.txt +4 -1
google-authenticator.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Authenticator
4
  Plugin URI: https://github.com/ivankruchkoff/google-authenticator
5
  Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
6
  Author: Ivan Kruchkoff
7
- Version: 0.50
8
  Author URI: https://github.com/ivankruchkoff
9
  Compatibility: WordPress 5.1
10
  Text Domain: google-authenticator
@@ -562,10 +562,6 @@ function loginfooter() {
562
  * @return user/loginstatus
563
  */
564
  function check_otp( $user, $username = '', $password = '' ) {
565
- // If a failure has already occurred somewhere along the way, pass it along rather than continuing with auth.
566
- if ( is_wp_error( $user ) ) {
567
- return $user;
568
- }
569
  // Store result of loginprocess, so far.
570
  $userstate = $user;
571
 
4
  Plugin URI: https://github.com/ivankruchkoff/google-authenticator
5
  Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
6
  Author: Ivan Kruchkoff
7
+ Version: 0.51
8
  Author URI: https://github.com/ivankruchkoff
9
  Compatibility: WordPress 5.1
10
  Text Domain: google-authenticator
562
  * @return user/loginstatus
563
  */
564
  function check_otp( $user, $username = '', $password = '' ) {
 
 
 
 
565
  // Store result of loginprocess, so far.
566
  $userstate = $user;
567
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ivankk
3
  Tags: authentication,otp,password,security,login,android,iphone,blackberry
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
- Stable tag: 0.50
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -80,6 +80,9 @@ please remember to remove the "Check credentials on all login attempts" checkmar
80
  4. Google Authenticator app on Android
81
 
82
  == Changelog ==
 
 
 
83
  = 0.50 =
84
  * New maintainer ivankk
85
  * Conditionally include base32 class
3
  Tags: authentication,otp,password,security,login,android,iphone,blackberry
4
  Requires at least: 4.5
5
  Tested up to: 5.1
6
+ Stable tag: 0.51
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
80
  4. Google Authenticator app on Android
81
 
82
  == Changelog ==
83
+ = 0.51 =
84
+ * Fix a regression that broke app passwords
85
+
86
  = 0.50 =
87
  * New maintainer ivankk
88
  * Conditionally include base32 class