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

Version Description

  • Done the bug fixing for the facebook login with the newer api version v2.5.
Download this release

Release Info

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

Code changes from version 2.0.8 to 2.0.9

accesspress-social-login-lite.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin name: 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: 2.0.8
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', '2.0.8' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
3
  Plugin name: 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: 2.0.9
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', '2.0.9' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
inc/frontend/login_check.php CHANGED
@@ -124,7 +124,7 @@ if( !class_exists( 'APSL_Lite_Login_Check_Class' ) ) {
124
  $fb->setDefaultAccessToken( $accessToken );
125
 
126
  try {
127
- $response = $fb->get( '/me?fields=email,name, first_name, last_name, gender, link, about, address, bio, birthday, education, hometown, is_verified, languages, location, website' );
128
  $userNode = $response->getGraphUser();
129
  }
130
  catch( Facebook\Exceptions\FacebookResponseException $e ) {
124
  $fb->setDefaultAccessToken( $accessToken );
125
 
126
  try {
127
+ $response = $fb->get( '/me?fields=email,name, first_name, last_name, gender, link, about, bio, birthday, education, hometown, is_verified, languages, location, website' );
128
  $userNode = $response->getGraphUser();
129
  }
130
  catch( Facebook\Exceptions\FacebookResponseException $e ) {
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.3
7
- Stable tag: 2.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -131,6 +131,9 @@ Yes. You can use the AccessPress social login lite anywhere by using shortcode i
131
  4. Backend Other settings Section.
132
 
133
  == Changelog ==
 
 
 
134
  = 2.0.8 =
135
  * Done the bug fixing for the email notifications for the admin with the blank user details when user deny the app for login.
136
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
+ Stable tag: 2.0.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
131
  4. Backend Other settings Section.
132
 
133
  == Changelog ==
134
+ = 2.0.9 =
135
+ * Done the bug fixing for the facebook login with the newer api version v2.5.
136
+
137
  = 2.0.8 =
138
  * Done the bug fixing for the email notifications for the admin with the blank user details when user deny the app for login.
139