Version Description
- Bugfix: Fixed hardcoded database path; now dynamically pulled in via inbuilt WordPress function
- Confirmed that everything is humming along with WordPress 3.7.1!
Download this release
Release Info
Developer | shareaholic |
Plugin | WordPress Social Tools, Related Posts, Monetization – Shareaholic |
Version | 7.0.4.9 |
Comparing to | |
See all releases |
Code changes from version 7.0.4.8 to 7.0.4.9
- readme.txt +9 -2
- shareaholic.php +3 -3
- utilities.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: shareaholic
|
3 |
Tags: sexybookmarks, shareaholic, shareholic, facebook, twitter, linkedin, URL Shortener, bitly, tinyurl, Goo.gl, Google+1, Google Analytics, Google Plus, Google, Instapaper, Wish List, Digg, Gmail, Google Bookmarks, Translate, Tumblr, AIM, Yahoo Messenger, Delicious, StumbleUpon, mister wong, evernote, add this, addtoany, share this, sharethis, share and follow, share and enjoy, sharing is sexy, sharing is caring, yahoo, reddit, hackernews, tweet button, twitter button, fark, buffer, myspace, orkut, netlog, hubspot, weheartit, printfriendly, yammer, wanelo, pinterest, google translate, bookmarks, social, email button, social share, socialize, sociable, sharebar, bookmark button, share button, social bookmarking, bookmarks menu, bookmarking, share, seo, analytics, stats, sharing, facebook like, facebook recommend, WPMU, mutisite, shortcode, yaarp, yarpp, nrelate, outbrain, linkwithin, related content, related posts, related, popular posts, popular, thumbnails, recommendations
|
4 |
Requires at least: 2.7
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 7.0.4.
|
7 |
|
8 |
Adds an attractive social bookmarking menu and related content widget to your posts, pages, index, or any combination of the three.
|
9 |
|
@@ -148,6 +148,10 @@ Please see here: [Usage & Installation Instructions](https://shareaholic.com/too
|
|
148 |
|
149 |
== Changelog ==
|
150 |
|
|
|
|
|
|
|
|
|
151 |
= 7.0.4.8 =
|
152 |
* Related Content
|
153 |
* Related Content now excludes attachments automatically
|
@@ -964,6 +968,9 @@ Please see here: [Usage & Installation Instructions](https://shareaholic.com/too
|
|
964 |
|
965 |
== Upgrade Notice ==
|
966 |
|
|
|
|
|
|
|
967 |
= 7.0.4.8 =
|
968 |
* Related Content now excludes attachments automatically. You can now also exclude *any* of your posts from Related Content via post and page metabox options.
|
969 |
|
2 |
Contributors: shareaholic
|
3 |
Tags: sexybookmarks, shareaholic, shareholic, facebook, twitter, linkedin, URL Shortener, bitly, tinyurl, Goo.gl, Google+1, Google Analytics, Google Plus, Google, Instapaper, Wish List, Digg, Gmail, Google Bookmarks, Translate, Tumblr, AIM, Yahoo Messenger, Delicious, StumbleUpon, mister wong, evernote, add this, addtoany, share this, sharethis, share and follow, share and enjoy, sharing is sexy, sharing is caring, yahoo, reddit, hackernews, tweet button, twitter button, fark, buffer, myspace, orkut, netlog, hubspot, weheartit, printfriendly, yammer, wanelo, pinterest, google translate, bookmarks, social, email button, social share, socialize, sociable, sharebar, bookmark button, share button, social bookmarking, bookmarks menu, bookmarking, share, seo, analytics, stats, sharing, facebook like, facebook recommend, WPMU, mutisite, shortcode, yaarp, yarpp, nrelate, outbrain, linkwithin, related content, related posts, related, popular posts, popular, thumbnails, recommendations
|
4 |
Requires at least: 2.7
|
5 |
+
Tested up to: 3.7.1
|
6 |
+
Stable tag: 7.0.4.9
|
7 |
|
8 |
Adds an attractive social bookmarking menu and related content widget to your posts, pages, index, or any combination of the three.
|
9 |
|
148 |
|
149 |
== Changelog ==
|
150 |
|
151 |
+
= 7.0.4.9 =
|
152 |
+
* Bugfix: Fixed hardcoded database path; now dynamically pulled in via inbuilt WordPress function
|
153 |
+
* Confirmed that everything is humming along with WordPress 3.7.1!
|
154 |
+
|
155 |
= 7.0.4.8 =
|
156 |
* Related Content
|
157 |
* Related Content now excludes attachments automatically
|
968 |
|
969 |
== Upgrade Notice ==
|
970 |
|
971 |
+
= 7.0.4.9 =
|
972 |
+
* Bugfixes and confirmed that everything is humming along with WordPress 3.7.1!
|
973 |
+
|
974 |
= 7.0.4.8 =
|
975 |
* Related Content now excludes attachments automatically. You can now also exclude *any* of your posts from Related Content via post and page metabox options.
|
976 |
|
shareaholic.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* The main file!
|
4 |
*
|
5 |
* @package shareaholic
|
6 |
-
* @version 7.0.4.
|
7 |
*/
|
8 |
|
9 |
/*
|
10 |
Plugin Name: Shareaholic | share buttons, analytics, related content
|
11 |
Plugin URI: https://shareaholic.com/publishers/
|
12 |
Description: Whether you want to get people sharing, grow your fans, make money, or know who's reading your content, Shareaholic will help you get it done. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
|
13 |
-
Version: 7.0.4.
|
14 |
Author: Shareaholic
|
15 |
Author URI: https://shareaholic.com
|
16 |
Text Domain: shareaholic
|
@@ -53,7 +53,7 @@ require_once(SHAREAHOLIC_DIR . '/deprecation.php');
|
|
53 |
*/
|
54 |
class Shareaholic {
|
55 |
const URL = 'https://shareaholic.com';
|
56 |
-
const VERSION = '7.0.4.
|
57 |
/**
|
58 |
* Starts off as false so that ::get_instance() returns
|
59 |
* a new instance.
|
3 |
* The main file!
|
4 |
*
|
5 |
* @package shareaholic
|
6 |
+
* @version 7.0.4.9
|
7 |
*/
|
8 |
|
9 |
/*
|
10 |
Plugin Name: Shareaholic | share buttons, analytics, related content
|
11 |
Plugin URI: https://shareaholic.com/publishers/
|
12 |
Description: Whether you want to get people sharing, grow your fans, make money, or know who's reading your content, Shareaholic will help you get it done. See <a href="admin.php?page=shareaholic-settings">configuration panel</a> for more settings.
|
13 |
+
Version: 7.0.4.9
|
14 |
Author: Shareaholic
|
15 |
Author URI: https://shareaholic.com
|
16 |
Text Domain: shareaholic
|
53 |
*/
|
54 |
class Shareaholic {
|
55 |
const URL = 'https://shareaholic.com';
|
56 |
+
const VERSION = '7.0.4.9';
|
57 |
/**
|
58 |
* Starts off as false so that ::get_instance() returns
|
59 |
* a new instance.
|
utilities.php
CHANGED
@@ -271,8 +271,8 @@ class ShareaholicUtilities {
|
|
271 |
}
|
272 |
if (self::get_option('metakey_6to7_upgraded') != 'true') {
|
273 |
global $wpdb;
|
274 |
-
$results = $wpdb->query( "UPDATE
|
275 |
-
$results = $wpdb->query( "UPDATE
|
276 |
self::update_options(array('disable_tracking' => 'off'));
|
277 |
self::update_options(array('disable_og_tags' => 'off'));
|
278 |
self::update_options(array('metakey_6to7_upgraded' => 'true'));
|
271 |
}
|
272 |
if (self::get_option('metakey_6to7_upgraded') != 'true') {
|
273 |
global $wpdb;
|
274 |
+
$results = $wpdb->query( "UPDATE $wpdb->postmeta SET `meta_key` = 'shareaholic_disable_open_graph_tags' WHERE `meta_key` = 'Hide OgTags'" );
|
275 |
+
$results = $wpdb->query( "UPDATE $wpdb->postmeta SET `meta_key` = 'shareaholic_disable_share_buttons' WHERE `meta_key` = 'Hide SexyBookmarks'" );
|
276 |
self::update_options(array('disable_tracking' => 'off'));
|
277 |
self::update_options(array('disable_og_tags' => 'off'));
|
278 |
self::update_options(array('metakey_6to7_upgraded' => 'true'));
|