WP Social Bookmarking Light - Version 1.6.7

Version Description

  • Bug fixed: Facebook like button did not work on IE.
Download this release

Release Info

Developer utahvich
Plugin Icon wp plugin WP Social Bookmarking Light
Version 1.6.7
Comparing to
See all releases

Code changes from version 1.6.6 to 1.6.7

modules/admin.php CHANGED
@@ -57,7 +57,7 @@ function wp_social_bookmarking_light_admin_head()
57
  margin: 0px;
58
  padding: 3px;
59
  }
60
- .wsbl_options td{en
61
  text-align: left;
62
  margin: 0px;
63
  padding: 3px;
57
  margin: 0px;
58
  padding: 3px;
59
  }
60
+ .wsbl_options td{
61
  text-align: left;
62
  margin: 0px;
63
  padding: 3px;
modules/content.php CHANGED
@@ -86,6 +86,12 @@ function wp_social_bookmarking_light_wp_head()
86
  if(in_array('tumblr', $services)){
87
  ?><script type="text/javascript" src="http://platform.tumblr.com/v1/share.js"></script><?php
88
  }
 
 
 
 
 
 
89
 
90
  // css
91
  $padding_top = $options['style']['padding_top'];
@@ -146,12 +152,6 @@ function wp_social_bookmarking_light_wp_footer()
146
  /*
147
  * load javascript
148
  */
149
- // facebook
150
- if(in_array('facebook_like', $services) || in_array('facebook_send', $services)){
151
- $locale = $options['facebook']['locale'];
152
- $locale = ($locale == '' ? 'en_US' : $locale);
153
- echo '<script src="http://connect.facebook.net/'.$locale.'/all.js#xfbml=1"></script>'."\n";
154
- }
155
  // evernote
156
  if(in_array('evernote', $services)){
157
  echo '<script type="text/javascript" src="http://static.evernote.com/noteit.js"></script>'."\n";
86
  if(in_array('tumblr', $services)){
87
  ?><script type="text/javascript" src="http://platform.tumblr.com/v1/share.js"></script><?php
88
  }
89
+ // facebook
90
+ if(in_array('facebook_like', $services) || in_array('facebook_send', $services)){
91
+ $locale = $options['facebook']['locale'];
92
+ $locale = ($locale == '' ? 'en_US' : $locale);
93
+ echo '<script src="http://connect.facebook.net/'.$locale.'/all.js#xfbml=1"></script>'."\n";
94
+ }
95
 
96
  // css
97
  $padding_top = $options['style']['padding_top'];
152
  /*
153
  * load javascript
154
  */
 
 
 
 
 
 
155
  // evernote
156
  if(in_array('evernote', $services)){
157
  echo '<script type="text/javascript" src="http://static.evernote.com/noteit.js"></script>'."\n";
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, BuzzURL, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread
5
  Requires at least: 2.9.0
6
  Tested up to: 3.1.2
7
- Stable tag: 1.6.6
8
 
9
  This plugin inserts social share links at the top or bottom of each post.
10
 
@@ -56,6 +56,9 @@ This is the list of used social sites:
56
 
57
  == Changelog ==
58
 
 
 
 
59
  = 1.6.6 =
60
  * Added: atode(toread) Button.
61
  * Added: Padding option.
4
  Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, BuzzURL, @nifty clip, Twitter, Tumblr, FC2 Bookmark, newsing, Choix, Yahoo!JAPAN Bookmark, Yahoo!Buzz, Google Bookmark, Delicious, Digg, FriendFeed, Google Buzz, Facebook, reddit, LinkedIn, Evernote, Instapaper, StumbleUpon, mixi, gree, atode, toread
5
  Requires at least: 2.9.0
6
  Tested up to: 3.1.2
7
+ Stable tag: 1.6.7
8
 
9
  This plugin inserts social share links at the top or bottom of each post.
10
 
56
 
57
  == Changelog ==
58
 
59
+ = 1.6.7 =
60
+ * Bug fixed: Facebook like button did not work on IE.
61
+
62
  = 1.6.6 =
63
  * Added: atode(toread) Button.
64
  * Added: Padding option.
wp-social-bookmarking-light.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ninxit.com/blog/2010/06/13/wp-social-bookmarking-light/
5
  Description: This plugin inserts social share links at the top or bottom of each post.
6
  Author: utahta
7
  Author URI: http://www.ninxit.com/blog/
8
- Version: 1.6.6
9
  */
10
  /*
11
  Copyright 2010 utahta (email : labs.ninxit@gmail.com)
@@ -59,4 +59,4 @@ function wp_social_bookmarking_light_init()
59
  }
60
  add_action( 'init', 'wp_social_bookmarking_light_init' );
61
 
62
- ?>
5
  Description: This plugin inserts social share links at the top or bottom of each post.
6
  Author: utahta
7
  Author URI: http://www.ninxit.com/blog/
8
+ Version: 1.6.7
9
  */
10
  /*
11
  Copyright 2010 utahta (email : labs.ninxit@gmail.com)
59
  }
60
  add_action( 'init', 'wp_social_bookmarking_light_init' );
61
 
62
+ ?>