Version Description
- Alter <style> to <style type="text/css">
Download this release
Release Info
Developer | utahvich |
Plugin | WP Social Bookmarking Light |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- readme.txt +4 -1
- wp-social-bookmarking-light.php +3 -3
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.ninxit.com/blog/
|
|
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
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 3.0.1
|
7 |
-
Stable tag: 1.5.
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
@@ -53,6 +53,9 @@ This is the list of used social sites:
|
|
53 |
|
54 |
== Changelog ==
|
55 |
|
|
|
|
|
|
|
56 |
= 1.5.0 =
|
57 |
* Added mixi Check, GREE Social Feedback.
|
58 |
|
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
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 3.0.1
|
7 |
+
Stable tag: 1.5.1
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
53 |
|
54 |
== Changelog ==
|
55 |
|
56 |
+
= 1.5.1 =
|
57 |
+
* Alter <style> to <style type="text/css">
|
58 |
+
|
59 |
= 1.5.0 =
|
60 |
* Added mixi Check, GREE Social Feedback.
|
61 |
|
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.5.
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
@@ -432,7 +432,7 @@ function wp_social_bookmarking_light_wp_head()
|
|
432 |
}
|
433 |
|
434 |
?>
|
435 |
-
<style>
|
436 |
ul.wp_social_bookmarking_light{list-style:none !important;border:0 !important;padding:0;margin:0;}
|
437 |
ul.wp_social_bookmarking_light li{float:left !important;border:0 !important;padding:0 4px 0 0 !important;margin:0 !important;height:17px !important;text-indent:0 !important;}
|
438 |
ul.wp_social_bookmarking_light li:before{content:"" !important;}
|
@@ -533,7 +533,7 @@ function wp_social_bookmarking_light_options_page()
|
|
533 |
$options = wp_social_bookmarking_light_options();
|
534 |
}
|
535 |
?>
|
536 |
-
<style>
|
537 |
.wp_social_bookmarking_light_options{
|
538 |
border: 1px solid #CCCCCC;
|
539 |
background-color: #F8F8EB;
|
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.5.1
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
432 |
}
|
433 |
|
434 |
?>
|
435 |
+
<style type="text/css">
|
436 |
ul.wp_social_bookmarking_light{list-style:none !important;border:0 !important;padding:0;margin:0;}
|
437 |
ul.wp_social_bookmarking_light li{float:left !important;border:0 !important;padding:0 4px 0 0 !important;margin:0 !important;height:17px !important;text-indent:0 !important;}
|
438 |
ul.wp_social_bookmarking_light li:before{content:"" !important;}
|
533 |
$options = wp_social_bookmarking_light_options();
|
534 |
}
|
535 |
?>
|
536 |
+
<style type="text/css">
|
537 |
.wp_social_bookmarking_light_options{
|
538 |
border: 1px solid #CCCCCC;
|
539 |
background-color: #F8F8EB;
|