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

Version Description

  • Done the plugin compactibility tests with wordpress version 4.8
  • Removal of unncessary commented codes from the plugin.
Download this release

Release Info

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

Code changes from version 3.2.8 to 3.2.9

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.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', '3.2.8' );
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.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', '3.2.9' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
inc/frontend/login_check.php CHANGED
@@ -7,18 +7,6 @@ if( !class_exists( 'APSL_Lite_Login_Check_Class' ) ) {
7
  //constructor
8
  function __construct() {
9
 
10
- // if(isset($_REQUEST['error']) || isset($_REQUEST['denied']) || isset($_REQUEST['oauth_problem'])){
11
- // $_SESSION['apsl_login_error_flag'] = 1;
12
- // if(isset($_REQUEST['redirect_to'])){
13
- // $redirect_to = $_REQUEST['redirect_to'];
14
- // echo "<script> window.location.href='$redirect_to'; </script>";
15
- // // APSL_Functions::redirect($_REQUEST['redirect_to']);
16
- // }else{
17
- // echo "You have access denied. Please reauthorize the app to access the login with this site.";
18
- // }
19
- // die();
20
- // }
21
-
22
  if( isset( $_GET['apsl_login_id'] ) ) {
23
  if( isset( $_REQUEST['state'] ) ) {
24
  parse_str( base64_decode( $_REQUEST['state'] ), $state_vars );
7
  //constructor
8
  function __construct() {
9
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  if( isset( $_GET['apsl_login_id'] ) ) {
11
  if( isset( $_REQUEST['state'] ) ) {
12
  parse_str( base64_decode( $_REQUEST['state'] ), $state_vars );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Access Keys
3
  Tags: social, login, social login, facebook, twitter, google, social connect, social network login, register, login with, signin, oauth, authorize, oauth
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,6 +137,10 @@ 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.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
 
3
  Tags: social, login, social login, facebook, twitter, google, social connect, social network login, register, login with, signin, oauth, authorize, oauth
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
+ Tested up to: 4.8
7
+ Stable tag: 3.2.9
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.9 =
141
+ * Done the plugin compactibility tests with wordpress version 4.8
142
+ * Removal of unncessary commented codes from the plugin.
143
+
144
  = 3.2.8 =
145
  * Done the checking if there already exist the google oauth class as it's creating error if other plugin already included it.
146