WordPress Share Buttons Plugin – AddThis - Version 3.0.2

Version Description

  • Bug fix: Conflict with WpSuperCache resolved
  • Wordpress 3.5 style conflicts resolved
Download this release

Release Info

Developer srijith.v
Plugin Icon 128x128 WordPress Share Buttons Plugin – AddThis
Version 3.0.2
Comparing to
See all releases

Code changes from version 3.0.1 to 3.0.2

addthis_social_widget.php CHANGED
@@ -23,7 +23,7 @@
23
  * Plugin Name: AddThis Social Bookmarking Widget
24
  * Plugin URI: http://www.addthis.com
25
  * Description: Help your visitor promote your site! The AddThis Social Bookmarking Widget allows any visitor to bookmark your site easily with many popular services. Sign up for an AddThis.com account to see how your visitors are sharing your content--which services they're using for sharing, which content is shared the most, and more. It's all free--even the pretty charts and graphs.
26
- * Version: 3.0.1
27
  *
28
  * Author: The AddThis Team
29
  * Author URI: http://www.addthis.com/blog
@@ -46,8 +46,8 @@ function addthis_early(){
46
 
47
 
48
  define( 'addthis_style_default' , 'fb_tw_p1_sc');
49
- define( 'ADDTHIS_PLUGIN_VERSION' , '3.0.1');
50
- define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.0.1');
51
  define( 'ADDTHIS_ATVERSION', '300');
52
  define( 'ADDTHIS_ATVERSION_MANUAL_UPDATE', -1);
53
  define( 'ADDTHIS_ATVERSION_AUTO_UPDATE', 0);
23
  * Plugin Name: AddThis Social Bookmarking Widget
24
  * Plugin URI: http://www.addthis.com
25
  * Description: Help your visitor promote your site! The AddThis Social Bookmarking Widget allows any visitor to bookmark your site easily with many popular services. Sign up for an AddThis.com account to see how your visitors are sharing your content--which services they're using for sharing, which content is shared the most, and more. It's all free--even the pretty charts and graphs.
26
+ * Version: 3.0.2
27
  *
28
  * Author: The AddThis Team
29
  * Author URI: http://www.addthis.com/blog
46
 
47
 
48
  define( 'addthis_style_default' , 'fb_tw_p1_sc');
49
+ define( 'ADDTHIS_PLUGIN_VERSION' , '3.0.2');
50
+ define( 'ADDTHIS_PRODUCT_VERSION' , 'wpp-3.0.2');
51
  define( 'ADDTHIS_ATVERSION', '300');
52
  define( 'ADDTHIS_ATVERSION_MANUAL_UPDATE', -1);
53
  define( 'ADDTHIS_ATVERSION_AUTO_UPDATE', 0);
css/options-page.css CHANGED
@@ -38,8 +38,14 @@ ul.nav-tab-wrapper li.ui-tabs-selected{
38
  border-bottom: 1px solid #fff;
39
  padding-bottom: 13px;
40
  }
41
-
42
-
 
 
 
 
 
 
43
  .select_row {
44
  line-height: 32px;
45
  padding-left:20px;
@@ -193,4 +199,4 @@ width: 36px;
193
  }
194
  #wpbody-content {
195
  font-family: Arial;
196
- }
38
  border-bottom: 1px solid #fff;
39
  padding-bottom: 13px;
40
  }
41
+ li.ui-tabs-active{
42
+ -moz-border-radius: 5px 5px 0 0 !important;
43
+ border-top:1px solid #ccc !important;
44
+ border-left:1px solid #ccc !important;
45
+ border-right: 1px solid #ccc !important;
46
+ border-bottom: 1px solid #fff !important;
47
+ padding-bottom: 13px !important;
48
+ }
49
  .select_row {
50
  line-height: 32px;
51
  padding-left:20px;
199
  }
200
  #wpbody-content {
201
  font-family: Arial;
202
+ }
includes/addthis_addjs.php CHANGED
@@ -124,7 +124,7 @@ Class AddThis_addjs{
124
  }
125
 
126
  function check_for_footer(){
127
- $url = add_query_arg( array( 'attest' => 'true') , home_url() );
128
  $response = wp_remote_get( $url, array( 'sslverify' => false ) );
129
  $code = (int) wp_remote_retrieve_response_code( $response );
130
  if ( $code == 200 ) {
@@ -135,10 +135,7 @@ Class AddThis_addjs{
135
  }
136
 
137
  function maybe_add_footer_comment(){
138
- if ( $_GET['attest'] = 'true' )
139
- {
140
- add_action( 'wp_footer', array($this, 'test_footer' ), 99999 ); // Some obscene priority, make sure we run last
141
- }
142
  }
143
 
144
  function test_footer(){
124
  }
125
 
126
  function check_for_footer(){
127
+ $url = home_url();
128
  $response = wp_remote_get( $url, array( 'sslverify' => false ) );
129
  $code = (int) wp_remote_retrieve_response_code( $response );
130
  if ( $code == 200 ) {
135
  }
136
 
137
  function maybe_add_footer_comment(){
138
+ add_action( 'wp_footer', array($this, 'test_footer' ), 99999 ); // Some obscene priority, make sure we run last
 
 
 
139
  }
140
 
141
  function test_footer(){
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: srijith.v, solchea, jorbin, _mjk_, addthis_paul, joesullivan
3
  Tags: share, addthis, social, bookmark, sharing, bookmarking, widget,AddThis, addtoany, aim, bookmark, buzz, del.icio.us, Digg,e-mail, email, Facebook, google bookmarks, google buzz, myspace,network, NewsVine, Reddit, Share, share this, sharethis, social, socialize, stumbleupon, twitter, windows live, yahoo buzz, pintrest, widget
4
  Requires at least: 2.9
5
- Tested up to: 3.4.2
6
- Stable tag: 3.0.1
7
 
8
  The AddThis Social Bookmarking Widget allows any visitor to bookmark and share your site easily with over 330 popular services.
9
 
@@ -78,6 +78,10 @@ In the screen options you can enable the AddThis meta box. Check the box and sa
78
  PHP 5+ is preferred; PHP 4 is supported.
79
 
80
  == Changelog ==
 
 
 
 
81
  = 3.0.1 =
82
  * Bug fix: Issues with usernames/passwords with special characters
83
 
@@ -211,6 +215,9 @@ Fixed nondeterministic bug with the_title(), causing the title to occasionally a
211
 
212
  == Upgrade Notice ==
213
 
 
 
 
214
  = 3.0.1 =
215
  Bug fixes.
216
 
2
  Contributors: srijith.v, solchea, jorbin, _mjk_, addthis_paul, joesullivan
3
  Tags: share, addthis, social, bookmark, sharing, bookmarking, widget,AddThis, addtoany, aim, bookmark, buzz, del.icio.us, Digg,e-mail, email, Facebook, google bookmarks, google buzz, myspace,network, NewsVine, Reddit, Share, share this, sharethis, social, socialize, stumbleupon, twitter, windows live, yahoo buzz, pintrest, widget
4
  Requires at least: 2.9
5
+ Tested up to: 3.5
6
+ Stable tag: 3.0.2
7
 
8
  The AddThis Social Bookmarking Widget allows any visitor to bookmark and share your site easily with over 330 popular services.
9
 
78
  PHP 5+ is preferred; PHP 4 is supported.
79
 
80
  == Changelog ==
81
+ = 3.0.2 =
82
+ * Bug fix: Conflict with WpSuperCache resolved
83
+ * Wordpress 3.5 style conflicts resolved
84
+
85
  = 3.0.1 =
86
  * Bug fix: Issues with usernames/passwords with special characters
87
 
215
 
216
  == Upgrade Notice ==
217
 
218
+ = 3.0.2 =
219
+ Bug fixes.
220
+
221
  = 3.0.1 =
222
  Bug fixes.
223