Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.9.3.1 |
Comparing to | |
See all releases |
Code changes from version 0.9.9.3 to 0.9.9.3.1
- README.txt +4 -1
- add-to-any.php +4 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.addtoany.com/contact/
|
|
4 |
Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.8.1
|
7 |
-
Stable tag: 0.9.9.3
|
8 |
|
9 |
Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
|
10 |
|
@@ -106,6 +106,9 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
109 |
= .9.9.3 =
|
110 |
* Add service icons
|
111 |
* Changelog markup update
|
4 |
Tags: bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, sharing, share, sharethis, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.8.1
|
7 |
+
Stable tag: 0.9.9.3.1
|
8 |
|
9 |
Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= .9.9.3.1 =
|
110 |
+
* Fix for possible global/object variable confusion with themes
|
111 |
+
|
112 |
= .9.9.3 =
|
113 |
* Add service icons
|
114 |
* Changelog markup update
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Add to Any: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: .9.9.3
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
@@ -24,6 +24,7 @@ $A2A_SHARE_SAVE_plugin_url_path = WP_PLUGIN_URL.'/'.$A2A_SHARE_SAVE_plugin_basen
|
|
24 |
|
25 |
function A2A_SHARE_SAVE_textdomain() {
|
26 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_plugin_basename;
|
|
|
27 |
load_plugin_textdomain('add-to-any',
|
28 |
$A2A_SHARE_SAVE_plugin_url_path.'/languages',
|
29 |
$A2A_SHARE_SAVE_plugin_basename.'/languages');
|
@@ -31,6 +32,8 @@ function A2A_SHARE_SAVE_textdomain() {
|
|
31 |
add_action('init', 'A2A_SHARE_SAVE_textdomain');
|
32 |
|
33 |
function A2A_SHARE_SAVE_link_vars() {
|
|
|
|
|
34 |
$linkname = get_the_title($post->ID);
|
35 |
$linkname_enc = rawurlencode( $linkname );
|
36 |
$linkurl = get_permalink($post->ID);
|
3 |
Plugin Name: Add to Any: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: .9.9.3.1
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
24 |
|
25 |
function A2A_SHARE_SAVE_textdomain() {
|
26 |
global $A2A_SHARE_SAVE_plugin_url_path, $A2A_SHARE_SAVE_plugin_basename;
|
27 |
+
|
28 |
load_plugin_textdomain('add-to-any',
|
29 |
$A2A_SHARE_SAVE_plugin_url_path.'/languages',
|
30 |
$A2A_SHARE_SAVE_plugin_basename.'/languages');
|
32 |
add_action('init', 'A2A_SHARE_SAVE_textdomain');
|
33 |
|
34 |
function A2A_SHARE_SAVE_link_vars() {
|
35 |
+
global $post;
|
36 |
+
|
37 |
$linkname = get_the_title($post->ID);
|
38 |
$linkname_enc = rawurlencode( $linkname );
|
39 |
$linkurl = get_permalink($post->ID);
|