diff options
Diffstat (limited to 'plugins/google-authenticator/google-authenticator.php')
-rw-r--r-- | plugins/google-authenticator/google-authenticator.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/google-authenticator/google-authenticator.php b/plugins/google-authenticator/google-authenticator.php index 6c19c17c..5d5f8601 100644 --- a/plugins/google-authenticator/google-authenticator.php +++ b/plugins/google-authenticator/google-authenticator.php @@ -4,14 +4,17 @@ Plugin Name: Google Authenticator Plugin URI: https://github.com/ivankruchkoff/google-authenticator Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator. Author: Ivan Kruchkoff -Version: 0.51 +Version: 0.52 Author URI: https://github.com/ivankruchkoff -Compatibility: WordPress 5.1 +Compatibility: WordPress 5.2 Text Domain: google-authenticator Domain Path: /lang ---------------------------------------------------------------------------- + + Thanks to Fabio Zumbi for Portuguese translation. + Thanks to Guido Schalkx for the Dutch translation. Thanks to Henrik Schack for creating / maintaining versions 0.20 to 0.48 Thanks to Ivan Kruchkoff for his UX improvements in user signup. Thanks to Bryan Ruiz for his Base32 encode/decode class, found at php.net. @@ -312,15 +315,15 @@ function user_setup_page() { ), array( 'text' => __( 'iOS: Google Authenticator', 'google-authenticator' ), - 'link' => 'https://itunes.apple.com/app/authy/id494168017', + 'link' => 'https://itunes.apple.com/app/google-authenticator/id388497605', ), array( 'text' => __( 'Android: Authy', 'google-authenticator' ), - 'link' => 'https://itunes.apple.com/app/authy/id494168017', + 'link' => 'https://play.google.com/store/apps/details?id=com.authy.authy', ), array( 'text' => __( 'Android: Google Authenticator', 'google-authenticator' ), - 'link' => 'https://itunes.apple.com/app/authy/id494168017', + 'link' => 'https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2', ), array( 'text' => __( 'Windows Phone', 'google-authenticator' ), @@ -540,7 +543,7 @@ function network_admin_setup_page() { function loginform() { echo "\t<p>\n"; echo "\t\t<label title=\"".__('If you don\'t have Google Authenticator enabled for your WordPress account, leave this field empty.','google-authenticator')."\">".__('Google Authenticator code','google-authenticator')."<span id=\"google-auth-info\"></span><br />\n"; - echo "\t\t<input type=\"text\" name=\"googleotp\" id=\"googleotp\" class=\"input\" value=\"\" size=\"20\" style=\"ime-mode: inactive;\" /></label>\n"; + echo "\t\t<input type=\"text\" name=\"googleotp\" id=\"googleotp\" class=\"input\" value=\"\" size=\"20\" style=\"ime-mode: inactive;\" autocomplete=\"off\" /></label>\n"; echo "\t</p>\n"; } |