Version Description
Download this release
Release Info
| Developer | joostdevalk |
| Plugin | |
| Version | 2.9.14 |
| Comparing to | |
| See all releases | |
Code changes from version 2.9.13 to 2.9.14
- images/indiagram.png +0 -0
- images/ping.gif +0 -0
- readme.txt +1 -0
- sociable.php +9 -10
images/indiagram.png
DELETED
|
Binary file
|
images/ping.gif
ADDED
|
Binary file
|
readme.txt
CHANGED
|
@@ -19,6 +19,7 @@ More info:
|
|
| 19 |
|
| 20 |
**Changelog**
|
| 21 |
|
|
|
|
| 22 |
* 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.)
|
| 23 |
* 2.9.12 Added Tip'd
|
| 24 |
* 2.9.11 Added settings link and Ozh admin menu icon
|
| 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
|
| 25 |
* 2.9.11 Added settings link and Ozh admin menu icon
|
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.
|
| 7 |
Author: Joost de Valk
|
| 8 |
Author URI: http://yoast.com/
|
| 9 |
|
|
@@ -233,11 +233,6 @@ $sociable_known_sites = Array(
|
|
| 233 |
'url' => 'http://www.hemidemi.com/user_bookmark/new?title=TITLE&url=PERMALINK',
|
| 234 |
),
|
| 235 |
|
| 236 |
-
'IndiaGram' => Array(
|
| 237 |
-
'favicon' => 'indiagram.png',
|
| 238 |
-
'url' => 'http://www.indiagram.com/mock/bookmarks/desitrain?action=add&address=PERMALINK&title=TITLE',
|
| 239 |
-
),
|
| 240 |
-
|
| 241 |
'IndianPad' => Array(
|
| 242 |
'favicon' => 'indianpad.png',
|
| 243 |
'url' => 'http://www.indianpad.com/submit.php?url=PERMALINK',
|
|
@@ -352,6 +347,11 @@ $sociable_known_sites = Array(
|
|
| 352 |
'favicon' => 'nujij.gif',
|
| 353 |
'url' => 'http://nujij.nl/jij.lynkx?t=TITLE&u=PERMALINK',
|
| 354 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 355 |
|
| 356 |
'PlugIM' => Array(
|
| 357 |
'favicon' => 'plugim.png',
|
|
@@ -605,7 +605,6 @@ $sociable_files = Array(
|
|
| 605 |
'images/healthranker.gif',
|
| 606 |
'images/hemidemi.png',
|
| 607 |
'images/im.png',
|
| 608 |
-
'images/indiagram.png',
|
| 609 |
'images/indianpad.png',
|
| 610 |
'images/kickit.png',
|
| 611 |
'images/kirtsy.gif',
|
|
@@ -615,7 +614,6 @@ $sociable_files = Array(
|
|
| 615 |
'images/linkarena.gif',
|
| 616 |
'images/linkedin.png',
|
| 617 |
'images/linkter.png',
|
| 618 |
-
'images/linkter.png',
|
| 619 |
'images/live.png',
|
| 620 |
'images/magnolia.png',
|
| 621 |
'images/meneame.gif',
|
|
@@ -628,6 +626,7 @@ $sociable_files = Array(
|
|
| 628 |
'images/netvouz.png',
|
| 629 |
'images/newsvine.png',
|
| 630 |
'images/nujij.gif',
|
|
|
|
| 631 |
'images/plugim.png',
|
| 632 |
'images/pownce.gif',
|
| 633 |
'images/ppnow.png',
|
|
@@ -698,9 +697,9 @@ function sociable_html($display=Array()) {
|
|
| 698 |
$blogname = urlencode(get_bloginfo('name')." ".get_bloginfo('description'));
|
| 699 |
$post = $wp_query->post;
|
| 700 |
|
| 701 |
-
$excerpt = urlencode($post->post_excerpt);
|
| 702 |
if ($excerpt == "") {
|
| 703 |
-
$excerpt = urlencode(substr(strip_tags($post->post_content),0,250));
|
| 704 |
}
|
| 705 |
$excerpt = str_replace('+','%20',$excerpt);
|
| 706 |
|
| 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 |
|
| 233 |
'url' => 'http://www.hemidemi.com/user_bookmark/new?title=TITLE&url=PERMALINK',
|
| 234 |
),
|
| 235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 236 |
'IndianPad' => Array(
|
| 237 |
'favicon' => 'indianpad.png',
|
| 238 |
'url' => 'http://www.indianpad.com/submit.php?url=PERMALINK',
|
| 347 |
'favicon' => 'nujij.gif',
|
| 348 |
'url' => 'http://nujij.nl/jij.lynkx?t=TITLE&u=PERMALINK',
|
| 349 |
),
|
| 350 |
+
|
| 351 |
+
'Ping.fm' => Array(
|
| 352 |
+
'favicon' => 'ping.gif',
|
| 353 |
+
'url' => 'http://ping.fm/ref/?link=PERMALINK&title=TITLE',
|
| 354 |
+
),
|
| 355 |
|
| 356 |
'PlugIM' => Array(
|
| 357 |
'favicon' => 'plugim.png',
|
| 605 |
'images/healthranker.gif',
|
| 606 |
'images/hemidemi.png',
|
| 607 |
'images/im.png',
|
|
|
|
| 608 |
'images/indianpad.png',
|
| 609 |
'images/kickit.png',
|
| 610 |
'images/kirtsy.gif',
|
| 614 |
'images/linkarena.gif',
|
| 615 |
'images/linkedin.png',
|
| 616 |
'images/linkter.png',
|
|
|
|
| 617 |
'images/live.png',
|
| 618 |
'images/magnolia.png',
|
| 619 |
'images/meneame.gif',
|
| 626 |
'images/netvouz.png',
|
| 627 |
'images/newsvine.png',
|
| 628 |
'images/nujij.gif',
|
| 629 |
+
'images/ping.gif',
|
| 630 |
'images/plugim.png',
|
| 631 |
'images/pownce.gif',
|
| 632 |
'images/ppnow.png',
|
| 697 |
$blogname = urlencode(get_bloginfo('name')." ".get_bloginfo('description'));
|
| 698 |
$post = $wp_query->post;
|
| 699 |
|
| 700 |
+
$excerpt = urlencode(strip_tags(strip_shortcodes($post->post_excerpt)));
|
| 701 |
if ($excerpt == "") {
|
| 702 |
+
$excerpt = urlencode(substr(strip_tags(strip_shortcodes($post->post_content)),0,250));
|
| 703 |
}
|
| 704 |
$excerpt = str_replace('+','%20',$excerpt);
|
| 705 |
|
