Sociable - Version 2.9.15

Version Description

Download this release

Release Info

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

Code changes from version 2.9.14 to 2.9.15

Files changed (2) hide show
  1. readme.txt +2 -1
  2. sociable.php +8 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.13
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.14 Make sure there are no tags or shortcodes in the excerpt, added ping.fm, removed indiagram (shut down).
23
  * 2.9.13 Changed Facebook link from sharer.php (meant for a popup window) to share.php (which has the actual menu on it etc.)
24
  * 2.9.12 Added Tip'd
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.15
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.15 Added a fallback for strip_shortcodes to maintain backwards compatibility with WordPress 2.3 and below.
23
  * 2.9.14 Make sure there are no tags or shortcodes in the excerpt, added ping.fm, removed indiagram (shut down).
24
  * 2.9.13 Changed Facebook link from sharer.php (meant for a popup window) to share.php (which has the actual menu on it etc.)
25
  * 2.9.12 Added Tip'd
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.14
7
  Author: Joost de Valk
8
  Author URI: http://yoast.com/
9
 
@@ -670,6 +670,13 @@ $sociable_files = Array(
670
  'jquery/jquery.js',
671
  );
672
 
 
 
 
 
 
 
 
673
  function sociable_html($display=Array()) {
674
  global $sociable_known_sites, $sociablepluginpath, $wp_query, $post;
675
 
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.15
7
  Author: Joost de Valk
8
  Author URI: http://yoast.com/
9
 
670
  'jquery/jquery.js',
671
  );
672
 
673
+ // For maintaining backwards compatability
674
+ if (!function_exists('strip_shortcodes')) {
675
+ function strip_shortcodes($content) {
676
+ return $content;
677
+ }
678
+ }
679
+
680
  function sociable_html($display=Array()) {
681
  global $sociable_known_sites, $sociablepluginpath, $wp_query, $post;
682