Version Description
- Fixed unexpected printing of the page title
Download this release
Release Info
Developer | MarijnRongen |
Plugin | Social Sharing Toolkit |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- readme.txt +8 -1
- social_sharing_toolkit.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: MarijnRongen
|
|
3 |
Tags: Facebook, Like, LinkedIn, Share, Google, Plus, +1, Twitter, Tweet, StumbleUpon, Stumble, Tumblr, Digg, Reddit, MySpace, Hyves, recommend, social, sharing
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.2.1
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
This plugin enables sharing of your content via popular social networks and can convert Twitter names and hashtags to links. Easy & configurable.
|
@@ -49,7 +49,14 @@ Upload the Social Sharing Toolkit plugin to your blog, activate it and use the S
|
|
49 |
3. Several wide buttons
|
50 |
4. Several high buttons
|
51 |
|
|
|
|
|
|
|
|
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
54 |
= 1.0.0 =
|
55 |
* First version
|
3 |
Tags: Facebook, Like, LinkedIn, Share, Google, Plus, +1, Twitter, Tweet, StumbleUpon, Stumble, Tumblr, Digg, Reddit, MySpace, Hyves, recommend, social, sharing
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.2.1
|
6 |
+
Stable tag: 1.0.1
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
This plugin enables sharing of your content via popular social networks and can convert Twitter names and hashtags to links. Easy & configurable.
|
49 |
3. Several wide buttons
|
50 |
4. Several high buttons
|
51 |
|
52 |
+
== Upgrade Notice ==
|
53 |
+
|
54 |
+
Please update to version 1.0.1 to prevent an unexpected printing of the page title.
|
55 |
+
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= 1.0.1 =
|
59 |
+
* Fixed unexpected printing of the page title
|
60 |
+
|
61 |
= 1.0.0 =
|
62 |
* First version
|
social_sharing_toolkit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Social Sharing Toolkit
|
4 |
Plugin URI: http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/
|
5 |
Description: This plugin enables sharing of your content via popular social networks and can also convert Twitter names and hashtags to links. Easy & configurable.
|
6 |
-
Version: 1.0.
|
7 |
Author: Marijn Rongen
|
8 |
Author URI: http://www.marijnrongen.com
|
9 |
*/
|
@@ -205,7 +205,7 @@ class MR_Social_Sharing_Toolkit {
|
|
205 |
}
|
206 |
|
207 |
function create_bookmarks() {
|
208 |
-
$title = the_title();
|
209 |
$url = get_permalink();
|
210 |
$class = 'mr_social_sharing_'.$this->options['layout'];
|
211 |
$bookmarks = '<ul class="mr_social_sharing">
|
3 |
Plugin Name: Social Sharing Toolkit
|
4 |
Plugin URI: http://www.marijnrongen.com/wordpress-plugins/social_sharing_toolkit/
|
5 |
Description: This plugin enables sharing of your content via popular social networks and can also convert Twitter names and hashtags to links. Easy & configurable.
|
6 |
+
Version: 1.0.1
|
7 |
Author: Marijn Rongen
|
8 |
Author URI: http://www.marijnrongen.com
|
9 |
*/
|
205 |
}
|
206 |
|
207 |
function create_bookmarks() {
|
208 |
+
$title = the_title('','',false);
|
209 |
$url = get_permalink();
|
210 |
$class = 'mr_social_sharing_'.$this->options['layout'];
|
211 |
$bookmarks = '<ul class="mr_social_sharing">
|