Version Description
- Fixed: Hatena button deleted protocol to work on https site. #37
Download this release
Release Info
Developer | utahvich |
Plugin | WP Social Bookmarking Light |
Version | 1.8.7 |
Comparing to | |
See all releases |
Code changes from version 1.8.6 to 1.8.7
- modules/services.php +4 -4
- readme.txt +5 -2
- wp-social-bookmarking-light.php +1 -1
modules/services.php
CHANGED
@@ -65,22 +65,22 @@ class WpSocialBookmarkingLight
|
|
65 |
*/
|
66 |
function hatena()
|
67 |
{
|
68 |
-
$url = "
|
69 |
$alt = __( "Bookmark this on Hatena Bookmark", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN );
|
70 |
$icon = WP_SOCIAL_BOOKMARKING_LIGHT_IMAGES_URL."/hatena.gif";
|
71 |
return $this->link( $url, $alt, $icon, 16, 12 );
|
72 |
}
|
73 |
function hatena_users()
|
74 |
{
|
75 |
-
$url = "
|
76 |
$alt = sprintf( __("Hatena Bookmark - %s", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN), $this->title );
|
77 |
-
$icon = "
|
78 |
return $this->link( $url, $alt, $icon, null, null );
|
79 |
}
|
80 |
function hatena_button()
|
81 |
{
|
82 |
$options = wp_social_bookmarking_light_options();
|
83 |
-
$url = "
|
84 |
$title = $this->title;
|
85 |
$alt = __( "Bookmark this on Hatena Bookmark", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN );
|
86 |
return $this->link_raw('<a href="'.$url.'"'
|
65 |
*/
|
66 |
function hatena()
|
67 |
{
|
68 |
+
$url = "//b.hatena.ne.jp/add?mode=confirm&url={$this->encode_url}&title={$this->encode_title}";
|
69 |
$alt = __( "Bookmark this on Hatena Bookmark", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN );
|
70 |
$icon = WP_SOCIAL_BOOKMARKING_LIGHT_IMAGES_URL."/hatena.gif";
|
71 |
return $this->link( $url, $alt, $icon, 16, 12 );
|
72 |
}
|
73 |
function hatena_users()
|
74 |
{
|
75 |
+
$url = "//b.hatena.ne.jp/entry/{$this->url}";
|
76 |
$alt = sprintf( __("Hatena Bookmark - %s", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN), $this->title );
|
77 |
+
$icon = "//b.hatena.ne.jp/entry/image/{$this->url}";
|
78 |
return $this->link( $url, $alt, $icon, null, null );
|
79 |
}
|
80 |
function hatena_button()
|
81 |
{
|
82 |
$options = wp_social_bookmarking_light_options();
|
83 |
+
$url = "//b.hatena.ne.jp/entry/{$this->url}";
|
84 |
$title = $this->title;
|
85 |
$alt = __( "Bookmark this on Hatena Bookmark", WP_SOCIAL_BOOKMARKING_LIGHT_DOMAIN );
|
86 |
return $this->link_raw('<a href="'.$url.'"'
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://github.com/utahta/WP-Social-Bookmarking-Light/wiki/Donate
|
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, @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, line, pocket, Pinterest
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.8.
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
@@ -61,8 +61,11 @@ This is the list of used social sites:
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
64 |
= 1.8.6 =
|
65 |
-
* Updated: facebook sdk to 2.7 from 2.0 [#35](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/
|
66 |
|
67 |
= 1.8.5 =
|
68 |
* Fixed: notice warning message "is_comment_popup" [#33](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/33)
|
4 |
Tags: links, social, bookmarks, bookmarking, Hatena, Livedoor Clip, @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, line, pocket, Pinterest
|
5 |
Requires at least: 2.9.0
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.8.7
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
61 |
|
62 |
== Changelog ==
|
63 |
|
64 |
+
= 1.8.7 =
|
65 |
+
* Fixed: Hatena button deleted protocol to work on https site. [#37](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/37)
|
66 |
+
|
67 |
= 1.8.6 =
|
68 |
+
* Updated: facebook sdk to 2.7 from 2.0 [#35](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/35)
|
69 |
|
70 |
= 1.8.5 =
|
71 |
* Fixed: notice warning message "is_comment_popup" [#33](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/33)
|
wp-social-bookmarking-light.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://github.com/utahta/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: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
+
Version: 1.8.7
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|