WordPress Social Tools, Related Posts, Monetization – Shareaholic - Version 7.8.0.2

Version Description

  • Bugfix: updating social counts lib to be php7 compatible
Download this release

Release Info

Developer shareaholic
Plugin Icon 128x128 WordPress Social Tools, Related Posts, Monetization – Shareaholic
Version 7.8.0.2
Comparing to
See all releases

Code changes from version 7.8.0.1 to 7.8.0.2

lib/social-share-counts/curl_multi_share_count.php CHANGED
@@ -50,7 +50,7 @@ class ShareaholicCurlMultiShareCount extends ShareaholicShareCount {
50
  }
51
 
52
  if(isset($config[$service]['prepare'])) {
53
- $this->$config[$service]['prepare']($this->url, $config);
54
  }
55
 
56
  // Create the curl handle
50
  }
51
 
52
  if(isset($config[$service]['prepare'])) {
53
+ $this->{$config[$service]['prepare']}($this->url, $config);
54
  }
55
 
56
  // Create the curl handle
lib/social-share-counts/seq_share_count.php CHANGED
@@ -44,7 +44,7 @@ class ShareaholicSeqShareCount extends ShareaholicShareCount {
44
  }
45
 
46
  if(isset($config[$service]['prepare'])) {
47
- $this->$config[$service]['prepare']($this->url, $config);
48
  }
49
 
50
  $timeout = isset($config[$service]['timeout']) ? $config[$service]['timeout'] : 1;
44
  }
45
 
46
  if(isset($config[$service]['prepare'])) {
47
+ $this->{$config[$service]['prepare']}($this->url, $config);
48
  }
49
 
50
  $timeout = isset($config[$service]['timeout']) ? $config[$service]['timeout'] : 1;
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: shareaholic
3
  Tags: shareaholic, shareholic, sexybookmarks, recommendations, related content, cookie consent, share buttons, email button, social sharing, social bookmarking, share image, image sharing, follow buttons, floated share buttons, floating share buttons, analytics, social media, social plugin, facebook, twitter, google plus, google bookmarks, gmail, linkedin, pinterest, reddit, tumblr, evernote, digg, delicious, stumbleupon, printfriendly, fancy, amazon, xing, vk, yahoo, mister wong, viadeo, odnoklassniki box.net, diigo, yammer, ycombinator, hotmail, instapaper, mixi, arto, whatsapp, hootsuite, inbound.org, plurk, aim, buffer, meneame, pinboard.in, stumpedia, bitly, blogger, yummly, izeby, kaboodle, weibo, instagram, tinyurl, typepad, weheartit, flipboard, pocket, wanelo, fark, wykop, symphony, kindle, houzz, youtube, sms, onenote, google classroom, disqus, spotify, zillow, feedly, kik, line, livejournal, baidu
4
  Requires at least: 3.0
5
- Tested up to: 4.4
6
- Stable tag: 7.8.0.1
7
 
8
  World's leading all-in-one Content Amplification Platform that helps grow your site traffic, engagement, conversions & monetization for FREE.
9
 
@@ -194,6 +194,9 @@ Please see here: [Usage & Installation Instructions](http://support.shareaholic.
194
 
195
  == Changelog ==
196
 
 
 
 
197
  = 7.8.0.1 =
198
  * Bugfix: removed call to the Delicious count API in the server-side connectivity check
199
 
@@ -1020,6 +1023,9 @@ Please see here: [Usage & Installation Instructions](http://support.shareaholic.
1020
 
1021
  == Upgrade Notice ==
1022
 
 
 
 
1023
  = 7.8.0.1 =
1024
  * Bugfix: removed call to the Delicious count API in the server-side connectivity check
1025
 
2
  Contributors: shareaholic
3
  Tags: shareaholic, shareholic, sexybookmarks, recommendations, related content, cookie consent, share buttons, email button, social sharing, social bookmarking, share image, image sharing, follow buttons, floated share buttons, floating share buttons, analytics, social media, social plugin, facebook, twitter, google plus, google bookmarks, gmail, linkedin, pinterest, reddit, tumblr, evernote, digg, delicious, stumbleupon, printfriendly, fancy, amazon, xing, vk, yahoo, mister wong, viadeo, odnoklassniki box.net, diigo, yammer, ycombinator, hotmail, instapaper, mixi, arto, whatsapp, hootsuite, inbound.org, plurk, aim, buffer, meneame, pinboard.in, stumpedia, bitly, blogger, yummly, izeby, kaboodle, weibo, instagram, tinyurl, typepad, weheartit, flipboard, pocket, wanelo, fark, wykop, symphony, kindle, houzz, youtube, sms, onenote, google classroom, disqus, spotify, zillow, feedly, kik, line, livejournal, baidu
4
  Requires at least: 3.0
5
+ Tested up to: 4.5
6
+ Stable tag: 7.8.0.2
7
 
8
  World's leading all-in-one Content Amplification Platform that helps grow your site traffic, engagement, conversions & monetization for FREE.
9
 
194
 
195
  == Changelog ==
196
 
197
+ = 7.8.0.2 =
198
+ * Bugfix: updating social counts lib to be php7 compatible
199
+
200
  = 7.8.0.1 =
201
  * Bugfix: removed call to the Delicious count API in the server-side connectivity check
202
 
1023
 
1024
  == Upgrade Notice ==
1025
 
1026
+ = 7.8.0.2 =
1027
+ * Bugfix: updating social counts lib to be php7 compatible
1028
+
1029
  = 7.8.0.1 =
1030
  * Bugfix: removed call to the Delicious count API in the server-side connectivity check
1031
 
shareaholic.php CHANGED
@@ -3,14 +3,14 @@
3
  * The main file!
4
  *
5
  * @package shareaholic
6
- * @version 7.8.0.1
7
  */
8
 
9
  /*
10
  Plugin Name: Shareaholic | share buttons, analytics, related content
11
  Plugin URI: https://shareaholic.com/publishers/
12
  Description: The world's leading all-in-one Content Amplification Platform that helps grow your website traffic, engagement, conversions & monetization. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
13
- Version: 7.8.0.1
14
  Author: Shareaholic
15
  Author URI: https://shareaholic.com
16
  Text Domain: shareaholic
@@ -63,7 +63,7 @@ if (!class_exists('Shareaholic')) {
63
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
64
  const REC_API_URL = 'http://recommendations.shareaholic.com';
65
 
66
- const VERSION = '7.8.0.1';
67
 
68
  /**
69
  * Starts off as false so that ::get_instance() returns
3
  * The main file!
4
  *
5
  * @package shareaholic
6
+ * @version 7.8.0.2
7
  */
8
 
9
  /*
10
  Plugin Name: Shareaholic | share buttons, analytics, related content
11
  Plugin URI: https://shareaholic.com/publishers/
12
  Description: The world's leading all-in-one Content Amplification Platform that helps grow your website traffic, engagement, conversions & monetization. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
13
+ Version: 7.8.0.2
14
  Author: Shareaholic
15
  Author URI: https://shareaholic.com
16
  Text Domain: shareaholic
63
  const CM_API_URL = 'https://cm-web.shareaholic.com'; // uses static IPs for firewall whitelisting
64
  const REC_API_URL = 'http://recommendations.shareaholic.com';
65
 
66
+ const VERSION = '7.8.0.2';
67
 
68
  /**
69
  * Starts off as false so that ::get_instance() returns