Version Description
- Bugfix, Description was not saved to WordPress database when updating profile. Thanks to xxdesmus for noticing this.
Download this release
Release Info
Developer | Henrik.Schack |
Plugin | Google Authenticator |
Version | 0.39 |
Comparing to | |
See all releases |
Code changes from version 0.38 to 0.39
- google-authenticator.php +3 -1
- readme.txt +6 -2
google-authenticator.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Authenticator
|
|
4 |
Plugin URI: http://henrik.schack.dk/google-authenticator-for-wordpress
|
5 |
Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
|
6 |
Author: Henrik Schack
|
7 |
-
Version: 0.
|
8 |
Author URI: http://henrik.schack.dk/
|
9 |
Compatibility: WordPress 3.2.1
|
10 |
Text Domain: google-authenticator
|
@@ -345,6 +345,7 @@ function personal_options_update() {
|
|
345 |
global $user_id;
|
346 |
|
347 |
$GA_enabled = trim( $_POST['GA_enabled'] );
|
|
|
348 |
$GA_relaxedmode = trim( $_POST['GA_relaxedmode'] );
|
349 |
$GA_secret = trim( $_POST['GA_secret'] );
|
350 |
$GA_pwdenabled = trim( $_POST['GA_pwdenabled'] );
|
@@ -377,6 +378,7 @@ function personal_options_update() {
|
|
377 |
}
|
378 |
|
379 |
update_user_option( $user_id, 'googleauthenticator_enabled', $GA_enabled, true );
|
|
|
380 |
update_user_option( $user_id, 'googleauthenticator_relaxedmode', $GA_relaxedmode, true );
|
381 |
update_user_option( $user_id, 'googleauthenticator_secret', $GA_secret, true );
|
382 |
update_user_option( $user_id, 'googleauthenticator_pwdenabled', $GA_pwdenabled, true );
|
4 |
Plugin URI: http://henrik.schack.dk/google-authenticator-for-wordpress
|
5 |
Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
|
6 |
Author: Henrik Schack
|
7 |
+
Version: 0.39
|
8 |
Author URI: http://henrik.schack.dk/
|
9 |
Compatibility: WordPress 3.2.1
|
10 |
Text Domain: google-authenticator
|
345 |
global $user_id;
|
346 |
|
347 |
$GA_enabled = trim( $_POST['GA_enabled'] );
|
348 |
+
$GA_description = trim( $_POST['GA_description'] );
|
349 |
$GA_relaxedmode = trim( $_POST['GA_relaxedmode'] );
|
350 |
$GA_secret = trim( $_POST['GA_secret'] );
|
351 |
$GA_pwdenabled = trim( $_POST['GA_pwdenabled'] );
|
378 |
}
|
379 |
|
380 |
update_user_option( $user_id, 'googleauthenticator_enabled', $GA_enabled, true );
|
381 |
+
update_user_option( $user_id, 'googleauthenticator_description', $GA_description, true );
|
382 |
update_user_option( $user_id, 'googleauthenticator_relaxedmode', $GA_relaxedmode, true );
|
383 |
update_user_option( $user_id, 'googleauthenticator_secret', $GA_secret, true );
|
384 |
update_user_option( $user_id, 'googleauthenticator_pwdenabled', $GA_pwdenabled, true );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Henrik.Schack
|
|
3 |
Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=henrik%40schack%2edk&lc=US&item_name=Google%20Authenticator&item_number=Google%20Authenticator&no_shipping=0&no_note=1&tax=0&bn=PP%2dDonationsBF&charset=UTF%2d8
|
4 |
Tags: authentication,otp,password,security,login,android,iphone,blackberry
|
5 |
Requires at least: 3.1.2
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Google Authenticator for your WordPress blog.
|
10 |
|
@@ -58,6 +58,9 @@ Another option is to enable "relaxed mode" in the settings for the plugin, this
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 0.38 =
|
62 |
* Usability fix, input field for codes changed from password to text type.
|
63 |
|
@@ -88,3 +91,4 @@ Thanks to:
|
|
88 |
|
89 |
[Daniel Werl](http://technobabbl.es/) for his usability tips.
|
90 |
|
|
3 |
Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=henrik%40schack%2edk&lc=US&item_name=Google%20Authenticator&item_number=Google%20Authenticator&no_shipping=0&no_note=1&tax=0&bn=PP%2dDonationsBF&charset=UTF%2d8
|
4 |
Tags: authentication,otp,password,security,login,android,iphone,blackberry
|
5 |
Requires at least: 3.1.2
|
6 |
+
Tested up to: 3.3
|
7 |
+
Stable tag: 0.39
|
8 |
|
9 |
Google Authenticator for your WordPress blog.
|
10 |
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 0.39 =
|
62 |
+
* Bugfix, Description was not saved to WordPress database when updating profile. Thanks to xxdesmus for noticing this.
|
63 |
+
|
64 |
= 0.38 =
|
65 |
* Usability fix, input field for codes changed from password to text type.
|
66 |
|
91 |
|
92 |
[Daniel Werl](http://technobabbl.es/) for his usability tips.
|
93 |
|
94 |
+
|