Social Login WordPress Plugin – AccessPress Social Login Lite - Version 3.2.8

Version Description

  • Done the checking if there already exist the google oauth class as it's creating error if other plugin already included it.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Login WordPress Plugin – AccessPress Social Login Lite
Version 3.2.8
Comparing to
See all releases

Code changes from version 3.2.7 to 3.2.8

accesspress-social-login-lite.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin name: Social Login WordPress Plugin - AccessPress Social Login Lite
4
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-login-lite/
5
  Description: A plugin to add various social logins to a site.
6
- version: 3.2.7
7
  Author: AccessPress Themes
8
  Author URI: https://accesspressthemes.com/
9
  Text Domain: accesspress-social-login-lite
@@ -12,7 +12,7 @@
12
  */
13
  //Declearation of the necessary constants for plugin
14
  if( !defined( 'APSL_VERSION' ) ) {
15
- define( 'APSL_VERSION', '3.2.7' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
3
  Plugin name: Social Login WordPress Plugin - AccessPress Social Login Lite
4
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-login-lite/
5
  Description: A plugin to add various social logins to a site.
6
+ version: 3.2.8
7
  Author: AccessPress Themes
8
  Author URI: https://accesspressthemes.com/
9
  Text Domain: accesspress-social-login-lite
12
  */
13
  //Declearation of the necessary constants for plugin
14
  if( !defined( 'APSL_VERSION' ) ) {
15
+ define( 'APSL_VERSION', '3.2.8' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
inc/frontend/login_check.php CHANGED
@@ -45,8 +45,12 @@ if( !class_exists( 'APSL_Lite_Login_Check_Class' ) ) {
45
  $this->onTwitterLogin();
46
  break;
47
  case 'google':
 
48
  include( APSL_PLUGIN_DIR . 'google/Client.php' );
 
 
49
  include( APSL_PLUGIN_DIR . 'google/Service/Plus.php' );
 
50
  $this->onGoogleLogin();
51
  break;
52
  }
45
  $this->onTwitterLogin();
46
  break;
47
  case 'google':
48
+ if( !class_exists( 'Google_Client' ) ) {
49
  include( APSL_PLUGIN_DIR . 'google/Client.php' );
50
+ }
51
+ if(!class_exists('Google_Service_Plus')){
52
  include( APSL_PLUGIN_DIR . 'google/Service/Plus.php' );
53
+ }
54
  $this->onGoogleLogin();
55
  break;
56
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social, login, social login, facebook, twitter, google, social connect, s
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.7
7
- Stable tag: 3.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -137,6 +137,9 @@ Yes. You can use the AccessPress social login lite anywhere by using shortcode i
137
  4. Backend Other settings Section.
138
 
139
  == Changelog ==
 
 
 
140
  = 3.2.7 =
141
  * Done the update of the font-awesome icons to version 4.7.0 in the plugin.
142
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.7
7
+ Stable tag: 3.2.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
137
  4. Backend Other settings Section.
138
 
139
  == Changelog ==
140
+ = 3.2.8 =
141
+ * Done the checking if there already exist the google oauth class as it's creating error if other plugin already included it.
142
+
143
  = 3.2.7 =
144
  * Done the update of the font-awesome icons to version 4.7.0 in the plugin.
145