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

Version Description

  • Addition of the header_sent method checking in the plugin's main class for the session start.
Download this release

Release Info

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

Code changes from version 2.0.6 to 2.0.7

Files changed (2) hide show
  1. accesspress-social-login-lite.php +3 -3
  2. readme.txt +4 -1
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.6
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.6' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
@@ -167,7 +167,7 @@ if( !class_exists( 'APSL_Lite_Class' ) ) {
167
  }
168
  //starts the session with the call of init hook
169
  function session_init() {
170
- if( !session_id() ) {
171
  session_start();
172
  }
173
  }
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.7
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.7' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
167
  }
168
  //starts the session with the call of init hook
169
  function session_init() {
170
+ if( !session_id() && !headers_sent() ) {
171
  session_start();
172
  }
173
  }
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.6
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.6 =
135
  * Code optimization. Removal of unnecessary php opening and closing tags.
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.7
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.7 =
135
+ * Addition of the header_sent method checking in the plugin's main class for the session start.
136
+
137
  = 2.0.6 =
138
  * Code optimization. Removal of unnecessary php opening and closing tags.
139