Sociable - Version 2.9.10

Version Description

Download this release

Release Info

Developer joostdevalk
Plugin Icon wp plugin Sociable
Version 2.9.10
Comparing to
See all releases

Code changes from version 2.9.9 to 2.9.10

Files changed (2) hide show
  1. readme.txt +3 -2
  2. sociable.php +3 -3
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: joostdevalk
3
  Donate link: http://yoast.com/donate/
4
  Tags: social, bookmark, bookmarks, bookmarking, social bookmarking, social bookmarks
5
  Requires at least: 2.2
6
- Tested up to: 2.6.2
7
- stable tag: 2.9.9
8
 
9
  Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites.
10
 
@@ -19,6 +19,7 @@ More info:
19
 
20
  **Changelog**
21
 
 
22
  * 2.9.9 Fixes for the custom fields issue.
23
  * 2.9.8 Fixes for WP 2.7
24
  * 2.9.6 Added Symbaloo, Tumblr,
3
  Donate link: http://yoast.com/donate/
4
  Tags: social, bookmark, bookmarks, bookmarking, social bookmarking, social bookmarks
5
  Requires at least: 2.2
6
+ Tested up to: 2.7
7
+ stable tag: 2.9.10
8
 
9
  Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites.
10
 
19
 
20
  **Changelog**
21
 
22
+ * 2.9.10 Fixes issue with excerpt not being urlencoded
23
  * 2.9.9 Fixes for the custom fields issue.
24
  * 2.9.8 Fixes for WP 2.7
25
  * 2.9.6 Added Symbaloo, Tumblr,
sociable.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Sociable
4
  Plugin URI: http://yoast.com/wordpress/sociable/
5
  Description: Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites. Go to <a href="options-general.php?page=Sociable">Settings -> Sociable</a> for setup.
6
- Version: 2.9.9
7
  Author: Joost de Valk
8
  Author URI: http://yoast.com/
9
 
@@ -179,7 +179,7 @@ $sociable_known_sites = Array(
179
 
180
  'Fark' => Array(
181
  'favicon' => 'fark.png',
182
- 'url' => 'http://cgi.fark.com/cgi/fark/farkit.pl?h=TITLE&u=PERMALINK',
183
  ),
184
 
185
  'feedmelinks' => Array(
@@ -691,7 +691,7 @@ function sociable_html($display=Array()) {
691
  $blogname = urlencode(get_bloginfo('name')." ".get_bloginfo('description'));
692
  $post = $wp_query->post;
693
 
694
- $excerpt = $post->post_excerpt;
695
  if ($excerpt == "") {
696
  $excerpt = urlencode(substr(strip_tags($post->post_content),0,250));
697
  }
3
  Plugin Name: Sociable
4
  Plugin URI: http://yoast.com/wordpress/sociable/
5
  Description: Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites. Go to <a href="options-general.php?page=Sociable">Settings -> Sociable</a> for setup.
6
+ Version: 2.9.10
7
  Author: Joost de Valk
8
  Author URI: http://yoast.com/
9
 
179
 
180
  'Fark' => Array(
181
  'favicon' => 'fark.png',
182
+ 'url' => 'http://cgi.fark.com/cgi/fark/farkit.pl?h=TITLE&amp;u=PERMALINK',
183
  ),
184
 
185
  'feedmelinks' => Array(
691
  $blogname = urlencode(get_bloginfo('name')." ".get_bloginfo('description'));
692
  $post = $wp_query->post;
693
 
694
+ $excerpt = urlencode($post->post_excerpt);
695
  if ($excerpt == "") {
696
  $excerpt = urlencode(substr(strip_tags($post->post_content),0,250));
697
  }