Google Authenticator – WordPress Two Factor Authentication (2FA) - Version 5.5.4

Version Description

  • Google Authenticator - Two factor Authentication (2FA, OTP) :
  • Minor Bug fix
Download this release

Release Info

Developer mayurjogale
Plugin Icon 128x128 Google Authenticator – WordPress Two Factor Authentication (2FA)
Version 5.5.4
Comparing to
See all releases

Code changes from version 5.5.3 to 5.5.4

changelog.txt CHANGED
@@ -5,6 +5,10 @@
5
  This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
6
  For the latest changes, please refer to the "Changelog" section in the [readme.txt file](https://plugins.svn.wordpress.org/miniorange-2-factor-authentication/trunk/readme.txt).
7
 
 
 
 
 
8
  = 5.5.3 =
9
  * Google Authenticator - Two factor Authentication (2FA, OTP) :
10
  * UI fixes for non-admin users
5
  This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
6
  For the latest changes, please refer to the "Changelog" section in the [readme.txt file](https://plugins.svn.wordpress.org/miniorange-2-factor-authentication/trunk/readme.txt).
7
 
8
+ = 5.5.4 =
9
+ * Google Authenticator - Two factor Authentication (2FA, OTP) :
10
+ * Minor Bug fix
11
+
12
  = 5.5.3 =
13
  * Google Authenticator - Two factor Authentication (2FA, OTP) :
14
  * UI fixes for non-admin users
handler/twofa/two_fa_login.php CHANGED
@@ -173,7 +173,7 @@ class Miniorange_Mobile_Login {
173
  function mo_2_factor_hide_login() {
174
  $bootstrappath = plugins_url( 'includes/css/bootstrap.min.css?version='.MO2F_VERSION.'', dirname(dirname(__FILE__)) );
175
  $bootstrappath = str_replace('/handler/includes/css', '/includes/css', $bootstrappath);
176
- $hidepath = plugins_url( 'includes/css/hide-login-form.css?version=5.5.3', dirname(dirname(__FILE__)) );
177
  $hidepath = str_replace('/handler/includes/css', '/includes/css', $hidepath);
178
 
179
  wp_register_style( 'hide-login', $hidepath );
@@ -270,7 +270,7 @@ class Miniorange_Mobile_Login {
270
  }
271
 
272
  function mo_2_factor_show_login_with_password_when_phonelogin_enabled() {
273
- wp_register_style( 'show-login', plugins_url( 'includes/css/show-login.css?version=5.5.3', dirname(dirname(__FILE__ ))) );
274
  wp_enqueue_style( 'show-login' );
275
  }
276
 
@@ -291,9 +291,9 @@ class Miniorange_Mobile_Login {
291
  }
292
 
293
  function mo_2_factor_show_login() {
294
- $hidepath = plugins_url( 'includes/css/hide-login-form.css?version=5.5.3', dirname(dirname(__FILE__)) );
295
 
296
- $showpath = plugins_url( 'includes/css/show-login.css?version=5.5.3', dirname(dirname(__FILE__ )));
297
 
298
  if ( get_option( 'mo2f_enable_login_with_2nd_factor' ) ) {
299
  wp_register_style( 'show-login', $hidepath );
173
  function mo_2_factor_hide_login() {
174
  $bootstrappath = plugins_url( 'includes/css/bootstrap.min.css?version='.MO2F_VERSION.'', dirname(dirname(__FILE__)) );
175
  $bootstrappath = str_replace('/handler/includes/css', '/includes/css', $bootstrappath);
176
+ $hidepath = plugins_url( 'includes/css/hide-login-form.css?version=5.5.4', dirname(dirname(__FILE__)) );
177
  $hidepath = str_replace('/handler/includes/css', '/includes/css', $hidepath);
178
 
179
  wp_register_style( 'hide-login', $hidepath );
270
  }
271
 
272
  function mo_2_factor_show_login_with_password_when_phonelogin_enabled() {
273
+ wp_register_style( 'show-login', plugins_url( 'includes/css/show-login.css?version=5.5.4', dirname(dirname(__FILE__ ))) );
274
  wp_enqueue_style( 'show-login' );
275
  }
276
 
291
  }
292
 
293
  function mo_2_factor_show_login() {
294
+ $hidepath = plugins_url( 'includes/css/hide-login-form.css?version=5.5.4', dirname(dirname(__FILE__)) );
295
 
296
+ $showpath = plugins_url( 'includes/css/show-login.css?version=5.5.4', dirname(dirname(__FILE__ )));
297
 
298
  if ( get_option( 'mo2f_enable_login_with_2nd_factor' ) ) {
299
  wp_register_style( 'show-login', $hidepath );
handler/twofa/two_fa_settings.php CHANGED
@@ -1815,7 +1815,7 @@ private function settings_error_page( $id = 'mo2f-setup-vue-site-settings', $foo
1815
  public function setup_wizard_content() {
1816
  $admin_url = is_network_admin() ? network_admin_url() : admin_url();
1817
 
1818
- $this->settings_error_page( 'mo2f-setup-vue-setup-wizard', '<a href="' . $admin_url.'?page=mo_2fa_two_fa">' . esc_html__( 'Go back to the Dashboard', 'mo2f-setup' ) . '</a>' );
1819
  $this->settings_inline_js();
1820
  }
1821
 
1815
  public function setup_wizard_content() {
1816
  $admin_url = is_network_admin() ? network_admin_url() : admin_url();
1817
 
1818
+ $this->settings_error_page( 'mo2f-setup-vue-setup-wizard', '<a href="' . $admin_url.'admin.php?page=mo_2fa_two_fa">' . esc_html__( 'Go back to the Dashboard', 'mo2f-setup' ) . '</a>' );
1819
  $this->settings_inline_js();
1820
  }
1821
 
miniorange_2_factor_settings.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: miniOrange 2 Factor Authentication
4
  * Plugin URI: https://miniorange.com
5
  * Description: This TFA plugin provides various two-factor authentication methods as an additional layer of security after the default wordpress login. We Support Google/Authy/LastPass Authenticator, QR Code, Push Notification, Soft Token and Security Questions(KBA) for 3 User in the free version of the plugin.
6
- * Version: 5.5.3
7
  * Author: miniOrange
8
  * Author URI: https://miniorange.com
9
  * Text Domain: miniorange-2-factor-authentication
@@ -14,7 +14,7 @@
14
  require dirname(__FILE__).DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR.'email-IPaddress.php';
15
 
16
  define( 'MO_HOST_NAME', 'https://login.xecurify.com' );
17
- define( 'MO2F_VERSION', '5.5.3' );
18
  define( 'MO2F_PLUGIN_URL', (plugin_dir_url(__FILE__)));
19
  define( 'MO2F_TEST_MODE', false );
20
  define( 'MO2F_IS_ONPREM', get_option('is_onprem'));
@@ -165,7 +165,7 @@
165
  wp_enqueue_style( 'wp-pointer' );
166
  wp_enqueue_script( 'wp-pointer' );
167
  wp_enqueue_script( 'utils' );
168
- wp_enqueue_style( 'mo_wpns_admin_plugins_page_style', plugins_url( '/includes/css/style_settings.css?ver=5.5.3', __FILE__ ) );
169
 
170
  include $mo2f_dirName . 'views'.DIRECTORY_SEPARATOR.'feedback_form.php';;
171
 
3
  * Plugin Name: miniOrange 2 Factor Authentication
4
  * Plugin URI: https://miniorange.com
5
  * Description: This TFA plugin provides various two-factor authentication methods as an additional layer of security after the default wordpress login. We Support Google/Authy/LastPass Authenticator, QR Code, Push Notification, Soft Token and Security Questions(KBA) for 3 User in the free version of the plugin.
6
+ * Version: 5.5.4
7
  * Author: miniOrange
8
  * Author URI: https://miniorange.com
9
  * Text Domain: miniorange-2-factor-authentication
14
  require dirname(__FILE__).DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR.'email-IPaddress.php';
15
 
16
  define( 'MO_HOST_NAME', 'https://login.xecurify.com' );
17
+ define( 'MO2F_VERSION', '5.5.4' );
18
  define( 'MO2F_PLUGIN_URL', (plugin_dir_url(__FILE__)));
19
  define( 'MO2F_TEST_MODE', false );
20
  define( 'MO2F_IS_ONPREM', get_option('is_onprem'));
165
  wp_enqueue_style( 'wp-pointer' );
166
  wp_enqueue_script( 'wp-pointer' );
167
  wp_enqueue_script( 'utils' );
168
+ wp_enqueue_style( 'mo_wpns_admin_plugins_page_style', plugins_url( '/includes/css/style_settings.css?ver=5.5.4', __FILE__ ) );
169
 
170
  include $mo2f_dirName . 'views'.DIRECTORY_SEPARATOR.'feedback_form.php';;
171
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://miniorange.com/
6
  Requires at least: 3.0.1
7
  Tested up to: 5.9.3
8
  Requires PHP: 5.3.0
9
- Stable tag: 5.5.3
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -240,6 +240,10 @@ You should go to <b>Setup Two Factor (2FA) </b> Tab and click on <b>Reconfigure<
240
 
241
  == Changelog ==
242
 
 
 
 
 
243
  = 5.5.3 =
244
  * Google Authenticator - Two factor Authentication (2FA, OTP) :
245
  * UI fixes for non-admin users
6
  Requires at least: 3.0.1
7
  Tested up to: 5.9.3
8
  Requires PHP: 5.3.0
9
+ Stable tag: 5.5.4
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
240
 
241
  == Changelog ==
242
 
243
+ = 5.5.4 =
244
+ * Google Authenticator - Two factor Authentication (2FA, OTP) :
245
+ * Minor Bug fix
246
+
247
  = 5.5.3 =
248
  * Google Authenticator - Two factor Authentication (2FA, OTP) :
249
  * UI fixes for non-admin users