WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer - Version 7.8.18

Version Description

  • [Improvement] Redirecting old LiveJournal login page (not in use from version 7.8.17) to corresponding webpage without LiveJournal login parameters
Download this release

Release Info

Developer the_champ
Plugin Icon 128x128 WordPress Social Share, Social Login and Social Comments Plugin – Super Socializer
Version 7.8.18
Comparing to
See all releases

Code changes from version 7.8.17 to 7.8.18

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +3 -3
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.3
7
- Stable tag: 7.8.17
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
@@ -204,6 +204,9 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
 
 
 
207
  = 7.8.17 =
208
  * [Bugfix] LiveJournal login was not working at WordPress login page with "?loggedout=true" querystring, in some cases
209
  * [Improvement] Compatible with "Recent Facebook Comments Widget" feature of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a> add-on version 1.1.4
@@ -1198,4 +1201,7 @@ Yes, we can help you with it. Just drop an email at support@heateor.com
1198
  = 7.8.17 =
1199
  * [Bugfix] LiveJournal login was not working at WordPress login page with "?loggedout=true" querystring, in some cases
1200
  * [Improvement] Compatible with "Recent Facebook Comments Widget" feature of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a> add-on version 1.1.4
1201
- * [Improvement] Improved LiveJournal login functionality
 
 
 
4
  Tags: social login, social share, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.7.3
7
+ Stable tag: 7.8.18
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share and Social Comments at your website
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
207
+ = 7.8.18 =
208
+ * [Improvement] Redirecting old LiveJournal login page (not in use from version 7.8.17) to corresponding webpage without LiveJournal login parameters
209
+
210
  = 7.8.17 =
211
  * [Bugfix] LiveJournal login was not working at WordPress login page with "?loggedout=true" querystring, in some cases
212
  * [Improvement] Compatible with "Recent Facebook Comments Widget" feature of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a> add-on version 1.1.4
1201
  = 7.8.17 =
1202
  * [Bugfix] LiveJournal login was not working at WordPress login page with "?loggedout=true" querystring, in some cases
1203
  * [Improvement] Compatible with "Recent Facebook Comments Widget" feature of <a href="https://www.heateor.com/facebook-comments-moderation/" target="_blank">Facebook Comments Moderation</a> add-on version 1.1.4
1204
+ * [Improvement] Improved LiveJournal login functionality
1205
+
1206
+ = 7.8.18 =
1207
+ * [Improvement] Redirecting old LiveJournal login page (not in use from version 7.8.17) to corresponding webpage without LiveJournal login parameters
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
- Version: 7.8.17
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: Super-Socializer
@@ -11,7 +11,7 @@ Domain Path: /languages
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
- define('THE_CHAMP_SS_VERSION', '7.8.17');
15
 
16
  require 'helper.php';
17
 
@@ -390,7 +390,7 @@ function the_champ_livejournal_auth(){
390
  require('library/LiveJournalLogin/class.openid.v3.php');
391
  $currentPageUrl = the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"])));
392
  if(isset($_GET['action']) && $_GET['action'] == 'auth'){
393
- wp_redirect(home_url(), 301);
394
  exit;
395
  }elseif(isset($_POST['openid_action']) && $_POST['openid_action'] == "SuperSocializerLogin"){ // Get identity from user and redirect browser to OpenID Server
396
  $theChampOpenId = new SimpleOpenID;
3
  Plugin Name: Super Socializer
4
  Plugin URI: http://super-socializer-wordpress.heateor.com
5
  Description: A complete 360 degree solution to provide all the social features like Social Login, Social Commenting, Social Sharing and more.
6
+ Version: 7.8.18
7
  Author: Team Heateor
8
  Author URI: https://www.heateor.com
9
  Text Domain: Super-Socializer
11
  License: GPL2+
12
  */
13
  defined('ABSPATH') or die("Cheating........Uh!!");
14
+ define('THE_CHAMP_SS_VERSION', '7.8.18');
15
 
16
  require 'helper.php';
17
 
390
  require('library/LiveJournalLogin/class.openid.v3.php');
391
  $currentPageUrl = the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"])));
392
  if(isset($_GET['action']) && $_GET['action'] == 'auth'){
393
+ wp_redirect(remove_query_arg(array('SuperSocializerAuth', 'action'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))), 301);
394
  exit;
395
  }elseif(isset($_POST['openid_action']) && $_POST['openid_action'] == "SuperSocializerLogin"){ // Get identity from user and redirect browser to OpenID Server
396
  $theChampOpenId = new SimpleOpenID;