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

Version Description

  • [Improvement] New changes made in version 7.10 were causing problem at websites running on PHP version less than 5.0
Download this release

Release Info

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

Code changes from version 7.10 to 7.10.1

Files changed (2) hide show
  1. readme.txt +8 -2
  2. super_socializer.php +6 -6
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.9.2
7
- Stable tag: 7.10
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
@@ -207,6 +207,9 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
207
  8. **Social Commenting**: Disqus Commenting selected
208
 
209
  == Changelog ==
 
 
 
210
  = 7.10 =
211
  * [Security] Social Login is more secure (props to <a href="https://github.com/calvinhughes" target="_blank">Calvin Hughes</a>)
212
  * [Improvement] Social avatar functionality was not working when "get_avatar_url" function was being used to show avatar
@@ -1347,4 +1350,7 @@ Yes, we can help you with it. Just drop an email at support[ at ]heateor[ dot ]c
1347
 
1348
  = 7.10 =
1349
  * [Security] Social Login is more secure (props to <a href="https://github.com/calvinhughes" target="_blank">Calvin Hughes</a>)
1350
- * [Improvement] Social avatar functionality was not working when "get_avatar_url" function was being used to show avatar
 
 
 
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.9.2
7
+ Stable tag: 7.10.1
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
207
  8. **Social Commenting**: Disqus Commenting selected
208
 
209
  == Changelog ==
210
+ = 7.10.1 =
211
+ * [Improvement] New changes made in version 7.10 were causing problem at websites running on PHP version less than 5.0
212
+
213
  = 7.10 =
214
  * [Security] Social Login is more secure (props to <a href="https://github.com/calvinhughes" target="_blank">Calvin Hughes</a>)
215
  * [Improvement] Social avatar functionality was not working when "get_avatar_url" function was being used to show avatar
1350
 
1351
  = 7.10 =
1352
  * [Security] Social Login is more secure (props to <a href="https://github.com/calvinhughes" target="_blank">Calvin Hughes</a>)
1353
+ * [Improvement] Social avatar functionality was not working when "get_avatar_url" function was being used to show avatar
1354
+
1355
+ = 7.10.1 =
1356
+ * [Improvement] New changes made in version 7.10 were causing problem at websites running on PHP version less than 5.0
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 and more.
6
- Version: 7.10
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.10');
15
 
16
  require 'helper.php';
17
 
@@ -660,10 +660,10 @@ function the_champ_frontend_scripts(){
660
  wp_localize_script(
661
  'the_champ_sl_common',
662
  'the_champ_sl_ajax_token',
663
- [
664
  'ajax_url' => admin_url('admin-ajax.php'),
665
  'security' => wp_create_nonce('the-champ-sl-ajax-token'),
666
- ]
667
  );
668
  }
669
  wp_enqueue_script('thickbox');
@@ -792,10 +792,10 @@ function the_champ_frontend_scripts(){
792
  wp_localize_script(
793
  'the_champ_combined_script',
794
  'the_champ_sl_ajax_token',
795
- [
796
  'ajax_url' => admin_url('admin-ajax.php'),
797
  'security' => wp_create_nonce('the-champ-sl-ajax-token'),
798
- ]
799
  );
800
  }
801
  }
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 and more.
6
+ Version: 7.10.1
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.10.1');
15
 
16
  require 'helper.php';
17
 
660
  wp_localize_script(
661
  'the_champ_sl_common',
662
  'the_champ_sl_ajax_token',
663
+ array(
664
  'ajax_url' => admin_url('admin-ajax.php'),
665
  'security' => wp_create_nonce('the-champ-sl-ajax-token'),
666
+ )
667
  );
668
  }
669
  wp_enqueue_script('thickbox');
792
  wp_localize_script(
793
  'the_champ_combined_script',
794
  'the_champ_sl_ajax_token',
795
+ array(
796
  'ajax_url' => admin_url('admin-ajax.php'),
797
  'security' => wp_create_nonce('the-champ-sl-ajax-token'),
798
+ )
799
  );
800
  }
801
  }