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

Version Description

  • [Bugfix] Plugin broke when Vkonakte login enabled on websites running PHP version < 5.4
Download this release

Release Info

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

Code changes from version 7.11.3 to 7.11.4

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +5 -5
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 follow, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.4
7
- Stable tag: 7.11.3
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
@@ -209,6 +209,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
 
 
 
212
  = 7.11.3 =
213
  * [Bugfix] Fixed PHP errors being generated at the websites running on PHP version < 5.4
214
  * Websites having directory appended to the domain as homepage url need to update the "Authorized redirect URIs" in Google client settings. Notification is being displayed in the admin for the same.
@@ -1447,4 +1450,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1447
 
1448
  = 7.11.3 =
1449
  * [Bugfix] Fixed PHP errors being generated at the websites running on PHP version < 5.4
1450
- * Websites having directory appended to the domain as homepage url need to update the "Authorized redirect URIs" in Google client settings. Notification is being displayed in the admin for the same.
 
 
 
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 follow, facebook login
5
  Requires at least: 2.5.0
6
  Tested up to: 4.9.4
7
+ Stable tag: 7.11.4
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
209
  8. **Social Commenting**: Disqus Commenting selected
210
 
211
  == Changelog ==
212
+ = 7.11.4 =
213
+ * [Bugfix] Plugin broke when Vkonakte login enabled on websites running PHP version < 5.4
214
+
215
  = 7.11.3 =
216
  * [Bugfix] Fixed PHP errors being generated at the websites running on PHP version < 5.4
217
  * Websites having directory appended to the domain as homepage url need to update the "Authorized redirect URIs" in Google client settings. Notification is being displayed in the admin for the same.
1450
 
1451
  = 7.11.3 =
1452
  * [Bugfix] Fixed PHP errors being generated at the websites running on PHP version < 5.4
1453
+ * Websites having directory appended to the domain as homepage url need to update the "Authorized redirect URIs" in Google client settings. Notification is being displayed in the admin for the same.
1454
+
1455
+ = 7.11.4 =
1456
+ * [Bugfix] Plugin broke when Vkonakte login enabled on websites running PHP version < 5.4
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.11.3
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.11.3');
15
 
16
  require 'helper.php';
17
 
@@ -470,10 +470,10 @@ function the_champ_connect(){
470
  $userId = $heateorSsVkontakte->getUserId();
471
  $email = $heateorSsVkontakte->getUserEmail();
472
  if($userId){
473
- $users = $heateorSsVkontakte->api('users.get', [
474
  'user_id' => $userId,
475
- 'fields' => ['first_name','last_name','nickname','screen_name','photo_rec','photo_big']
476
- ]);
477
  if(isset($users[0]) && isset($users[0]["id"]) && $users[0]["id"]){
478
  $profileData = the_champ_sanitize_profile_data($users[0], 'vkontakte');
479
  $profileData['email'] = '';
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.11.4
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.11.4');
15
 
16
  require 'helper.php';
17
 
470
  $userId = $heateorSsVkontakte->getUserId();
471
  $email = $heateorSsVkontakte->getUserEmail();
472
  if($userId){
473
+ $users = $heateorSsVkontakte->api('users.get', array(
474
  'user_id' => $userId,
475
+ 'fields' => array('first_name','last_name','nickname','screen_name','photo_rec','photo_big')
476
+ ));
477
  if(isset($users[0]) && isset($users[0]["id"]) && $users[0]["id"]){
478
  $profileData = the_champ_sanitize_profile_data($users[0], 'vkontakte');
479
  $profileData['email'] = '';