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

Version Description

  • [Improvement] Webpage urls with "?SuperSocializerAuth=LiveJournal" appended were appearing in "Google webmaster tools errors" in some cases
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.24
Comparing to
See all releases

Code changes from version 7.8.23 to 7.8.24

Files changed (2) hide show
  1. readme.txt +10 -4
  2. super_socializer.php +6 -6
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor, the_champ, Hungarian Translator: László Tavaszi http://
3
  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.5
7
- Stable tag: 7.8.23
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
@@ -14,7 +14,7 @@ Integrate Social Login, Social Share and Social Comments at your website easiest
14
 
15
  **Note:** Plugin will not work on local server. You should have an online website for the plugin to function properly.
16
 
17
- **Available in English, <a target="_blank" href="https://ja.wordpress.org/plugins/super-socializer/">Japanese</a>, Spanish, Hungarian, Portuguese, Chinese, Italian, Arabic, <a target="_blank" href="https://ru.wordpress.org/plugins/super-socializer/">Russian</a> and Ukrainian languages**
18
 
19
  = Feature list =
20
  * Social Share from around 100 social networks
@@ -204,6 +204,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
 
 
 
207
  = 7.8.23 =
208
  * [Improvement] Performance improvement for the mobile responsiveness feature added in previous version
209
 
@@ -1246,4 +1249,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1246
  * [Improvement] Sticky horizontal sharing icons were covering website footer on mobile devices
1247
 
1248
  = 7.8.23 =
1249
- * [Improvement] Performance improvement for the mobile responsiveness feature added in previous version
 
 
 
3
  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.8
7
+ Stable tag: 7.8.24
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
14
 
15
  **Note:** Plugin will not work on local server. You should have an online website for the plugin to function properly.
16
 
17
+ **Available in English, <a target="_blank" href="https://en-ca.wordpress.org/plugins/super-socializer/">English (Canada)</a>, <a target="_blank" href="https://ja.wordpress.org/plugins/super-socializer/">Japanese</a>, Spanish, Hungarian, Portuguese, Chinese, Italian, Arabic, <a target="_blank" href="https://ru.wordpress.org/plugins/super-socializer/">Russian</a> and Ukrainian languages**
18
 
19
  = Feature list =
20
  * Social Share from around 100 social networks
204
  8. **Social Commenting**: Disqus Commenting selected
205
 
206
  == Changelog ==
207
+ = 7.8.24 =
208
+ * [Improvement] Webpage urls with "?SuperSocializerAuth=LiveJournal" appended were appearing in "Google webmaster tools errors" in some cases
209
+
210
  = 7.8.23 =
211
  * [Improvement] Performance improvement for the mobile responsiveness feature added in previous version
212
 
1249
  * [Improvement] Sticky horizontal sharing icons were covering website footer on mobile devices
1250
 
1251
  = 7.8.23 =
1252
+ * [Improvement] Performance improvement for the mobile responsiveness feature added in previous version
1253
+
1254
+ = 7.8.24 =
1255
+ * [Improvement] Webpage urls with "?SuperSocializerAuth=LiveJournal" appended were appearing in "Google webmaster tools errors" in some cases
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.23
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.23');
15
 
16
  require 'helper.php';
17
 
@@ -419,10 +419,7 @@ function the_champ_connect(){
419
  function the_champ_livejournal_auth(){
420
  require('library/LiveJournalLogin/class.openid.v3.php');
421
  $currentPageUrl = the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"])));
422
- if(isset($_GET['action']) && $_GET['action'] == 'auth'){
423
- wp_redirect(remove_query_arg(array('SuperSocializerAuth', 'action'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))), 301);
424
- exit;
425
- }elseif(isset($_POST['openid_action']) && $_POST['openid_action'] == "SuperSocializerLogin"){ // Get identity from user and redirect browser to OpenID Server
426
  $theChampOpenId = new SimpleOpenID;
427
  $theChampOpenId->SetIdentity(sanitize_text_field($_POST['openid_url']).'.livejournal.com');
428
  $theChampOpenId->SetTrustRoot($currentPageUrl);
@@ -489,6 +486,9 @@ function the_champ_livejournal_auth(){
489
  }
490
  }elseif(isset($_GET['openid_mode']) && $_GET['openid_mode'] == 'cancel'){ // User Canceled the Request
491
  the_champ_close_login_popup($currentPageUrl);
 
 
 
492
  }
493
  die;
494
  }
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.24
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.24');
15
 
16
  require 'helper.php';
17
 
419
  function the_champ_livejournal_auth(){
420
  require('library/LiveJournalLogin/class.openid.v3.php');
421
  $currentPageUrl = the_champ_get_valid_url(html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"])));
422
+ if(isset($_POST['openid_action']) && $_POST['openid_action'] == "SuperSocializerLogin"){ // Get identity from user and redirect browser to OpenID Server
 
 
 
423
  $theChampOpenId = new SimpleOpenID;
424
  $theChampOpenId->SetIdentity(sanitize_text_field($_POST['openid_url']).'.livejournal.com');
425
  $theChampOpenId->SetTrustRoot($currentPageUrl);
486
  }
487
  }elseif(isset($_GET['openid_mode']) && $_GET['openid_mode'] == 'cancel'){ // User Canceled the Request
488
  the_champ_close_login_popup($currentPageUrl);
489
+ }else{
490
+ wp_redirect(remove_query_arg(array('SuperSocializerAuth', 'action'), html_entity_decode(esc_url(the_champ_get_http().$_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]))), 301);
491
+ exit;
492
  }
493
  die;
494
  }