Google Apps Login - Version 3.2

Version Description

Added workaround for incompatibility with WPMU Defender plugin's new 2FA feature. Updated compatibility with the upcoming WordPress 4.9 release.

Download this release

Release Info

Developer niravbhut
Plugin Icon 128x128 Google Apps Login
Version 3.2
Comparing to
See all releases

Code changes from version 3.0 to 3.2

core/core_google_apps_login.php CHANGED
@@ -425,7 +425,7 @@ class core_google_apps_login {
425
  return $this->_final_redirect;
426
  }
427
 
428
- public function ga_login_redirect($redirect_to, $request_from, $user) {
429
  if ($user && !is_wp_error($user)) {
430
  $final_redirect = $this->getFinalRedirect();
431
  if ($final_redirect !== '') {
425
  return $this->_final_redirect;
426
  }
427
 
428
+ public function ga_login_redirect($redirect_to, $request_from='', $user=null) {
429
  if ($user && !is_wp_error($user)) {
430
  $final_redirect = $this->getFinalRedirect();
431
  if ($final_redirect !== '') {
google_apps_login.php CHANGED
@@ -4,8 +4,8 @@
4
  * Plugin Name: Google Apps Login
5
  * Plugin URI: http://wp-glogin.com/
6
  * Description: Simple secure login for Wordpress through users' Google Apps accounts (uses secure OAuth2, and MFA if enabled)
7
- * Version: 3.0
8
- * Author: Dan Lester
9
  * Author URI: http://wp-glogin.com/
10
  * License: GPL3
11
  * Network: true
@@ -23,7 +23,7 @@ else {
23
 
24
  class basic_google_apps_login extends core_google_apps_login {
25
 
26
- protected $PLUGIN_VERSION = '3.0';
27
 
28
  // Singleton
29
  private static $instance = null;
4
  * Plugin Name: Google Apps Login
5
  * Plugin URI: http://wp-glogin.com/
6
  * Description: Simple secure login for Wordpress through users' Google Apps accounts (uses secure OAuth2, and MFA if enabled)
7
+ * Version: 3.2
8
+ * Author: Lever Technologies
9
  * Author URI: http://wp-glogin.com/
10
  * License: GPL3
11
  * Network: true
23
 
24
  class basic_google_apps_login extends core_google_apps_login {
25
 
26
+ protected $PLUGIN_VERSION = '3.2';
27
 
28
  // Singleton
29
  private static $instance = null;
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Plugin Name ===
2
- Contributors: danlester
3
  Tags: login, google, authentication, oauth, google login, google apps, g suite, sso, single-sign-on, auth, intranet
4
  Requires at least: 4.0
5
- Tested up to: 4.8
6
- Stable tag: 3.0
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -197,6 +197,11 @@ the WordPress admin panel once you have activated the plugin. For a (non-persona
197
 
198
  == Changelog ==
199
 
 
 
 
 
 
200
  = 3.0 =
201
 
202
  Internal changes to Google Client library. Essential for the latest versions of some extension plugins such as Google Drive Embedder.
1
  === Plugin Name ===
2
+ Contributors: levertechadmin, danlester
3
  Tags: login, google, authentication, oauth, google login, google apps, g suite, sso, single-sign-on, auth, intranet
4
  Requires at least: 4.0
5
+ Tested up to: 4.9
6
+ Stable tag: 3.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
197
 
198
  == Changelog ==
199
 
200
+ = 3.2 =
201
+
202
+ Added workaround for incompatibility with WPMU Defender plugin's new 2FA feature.
203
+ Updated compatibility with the upcoming WordPress 4.9 release.
204
+
205
  = 3.0 =
206
 
207
  Internal changes to Google Client library. Essential for the latest versions of some extension plugins such as Google Drive Embedder.