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

Version Description

[28 September 2021] = * [Improvement] Improved performance of Social Login * [Bugfix] Steam Login was not working with PHP 8

Download this release

Release Info

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

Code changes from version 7.13.25 to 7.13.26

inc/social_login.php CHANGED
@@ -184,8 +184,12 @@ function the_champ_login_user($userId, $profileData = array(), $socialId = '', $
184
  }
185
  do_action('the_champ_login_user', $userId, $profileData, $socialId, $update);
186
 
 
 
187
  wp_set_current_user($userId, $user->user_login);
188
  wp_set_auth_cookie($userId, true);
 
 
189
  do_action('wp_login', $user->user_login, $user);
190
  }
191
 
184
  }
185
  do_action('the_champ_login_user', $userId, $profileData, $socialId, $update);
186
 
187
+ clean_user_cache($user->ID);
188
+ wp_clear_auth_cookie();
189
  wp_set_current_user($userId, $user->user_login);
190
  wp_set_auth_cookie($userId, true);
191
+ update_user_caches($user);
192
+
193
  do_action('wp_login', $user->user_login, $user);
194
  }
195
 
library/SteamLogin/SteamLogin.php CHANGED
@@ -77,7 +77,7 @@ if(!class_exists('SteamLogin')){
77
 
78
  foreach ($signed as $item) {
79
  $val = $_GET['openid_' . str_replace('.', '_', $item)];
80
- $params['openid.' . $item] = get_magic_quotes_gpc() ? stripslashes($val) : $val;
81
  }
82
 
83
  $params['openid.mode'] = 'check_authentication';
77
 
78
  foreach ($signed as $item) {
79
  $val = $_GET['openid_' . str_replace('.', '_', $item)];
80
+ $params['openid.' . $item] = $val;
81
  }
82
 
83
  $params['openid.mode'] = 'check_authentication';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor, farhan8heateor, jatin8heateor, the_champ, Hungarian Trans
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
- Tested up to: 5.8
7
- Stable tag: 7.13.25
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
@@ -213,6 +213,10 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
 
 
 
 
216
  = 7.13.25 [26 July 2021] =
217
  * [Improvement] Improved background color for Kakao login button
218
 
@@ -2325,4 +2329,8 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
2325
  * [Improvement] Improved Kakao logo for Kakao login button
2326
 
2327
  = 7.13.25 [26 July 2021] =
2328
- * [Improvement] Improved background color for Kakao login button
 
 
 
 
3
  Donate link: https://www.heateor.com/donate?action=Super+Socializer
4
  Tags: social login, social share, line login, social commenting, social comments, social plugin, profile data, social analytics, online identity, social profile storage, single sign-on, social media follow, facebook login, twitter login, linkedin login, google login, vkontakte login, Windows Live Login, Microsoft Login, Wordpress login, Yahoo login, Spotify login, Dribbble login, Kakao login, Github login, Twitch login, Instagram login, dropbox login, foursquare login, disqus login, reddit login, amazon login, stackoverflow login, stack overflow login, discord login, mail.ru login, mailru login, mail ru login
5
  Requires at least: 2.5.0
6
+ Tested up to: 5.8.1
7
+ Stable tag: 7.13.26
8
  License: GPLv2 or later
9
 
10
  The unique Social Plugin to let you integrate Social Login, Social Share, Social Comments and Social Media follow at your website
213
  8. **Social Commenting**: Disqus Commenting selected
214
 
215
  == Changelog ==
216
+ = 7.13.26 [28 September 2021] =
217
+ * [Improvement] Improved performance of Social Login
218
+ * [Bugfix] Steam Login was not working with PHP 8
219
+
220
  = 7.13.25 [26 July 2021] =
221
  * [Improvement] Improved background color for Kakao login button
222
 
2329
  * [Improvement] Improved Kakao logo for Kakao login button
2330
 
2331
  = 7.13.25 [26 July 2021] =
2332
+ * [Improvement] Improved background color for Kakao login button
2333
+
2334
+ = 7.13.26 [28 September 2021] =
2335
+ * [Improvement] Improved performance of Social Login
2336
+ * [Bugfix] Steam Login was not working with PHP 8
super_socializer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
- Version: 7.13.25
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.13.25');
15
 
16
  require 'helper.php';
17
 
3
  Plugin Name: Super Socializer
4
  Plugin URI: https://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, Social Media follow and more
6
+ Version: 7.13.26
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.13.26');
15
 
16
  require 'helper.php';
17