Version Description
- hotfix
Download this release
Release Info
Developer | pfefferle |
Plugin | WebSub/PubSubHubbub |
Version | 1.6.5 |
Comparing to | |
See all releases |
Code changes from version 1.6.4 to 1.6.5
- pubsubhubbub.php +3 -3
- readme.txt +5 -2
pubsubhubbub.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: PubSubHubbub
|
4 |
Plugin URI: http://code.google.com/p/pubsubhubbub/
|
5 |
Description: A better way to tell the world when your blog is updated.
|
6 |
-
Version: 1.6.
|
7 |
Author: Josh Fraser, Matthias Pfefferle
|
8 |
Author Email: joshfraz@gmail.com
|
9 |
Author URI: http://wordpress.org/extend/plugins/pubsubhubbub/
|
@@ -199,7 +199,7 @@ function pshb_add_settings_page() { ?>
|
|
199 |
// add a settings link next to deactive / edit
|
200 |
function pshb_add_settings_link( $links, $file ) {
|
201 |
if( $file == 'pubsubhubbub/pubsubhubbub.php' && function_exists( "admin_url" ) ) {
|
202 |
-
$settings_link = '<a href="' . admin_url( 'options-general.php?page=pubsubhubbub
|
203 |
array_unshift( $links, $settings_link ); // before other links
|
204 |
}
|
205 |
return $links;
|
@@ -250,4 +250,4 @@ add_action('admin_init', 'pshb_register_my_settings');
|
|
250 |
*/
|
251 |
function publish_to_hub($deprecated = null, $feed_urls) {
|
252 |
pshb_publish_to_hub($feed_urls);
|
253 |
-
}
|
3 |
Plugin Name: PubSubHubbub
|
4 |
Plugin URI: http://code.google.com/p/pubsubhubbub/
|
5 |
Description: A better way to tell the world when your blog is updated.
|
6 |
+
Version: 1.6.5
|
7 |
Author: Josh Fraser, Matthias Pfefferle
|
8 |
Author Email: joshfraz@gmail.com
|
9 |
Author URI: http://wordpress.org/extend/plugins/pubsubhubbub/
|
199 |
// add a settings link next to deactive / edit
|
200 |
function pshb_add_settings_link( $links, $file ) {
|
201 |
if( $file == 'pubsubhubbub/pubsubhubbub.php' && function_exists( "admin_url" ) ) {
|
202 |
+
$settings_link = '<a href="' . admin_url( 'options-general.php?page=pubsubhubbub' ) . '">' . __('Settings') . '</a>';
|
203 |
array_unshift( $links, $settings_link ); // before other links
|
204 |
}
|
205 |
return $links;
|
250 |
*/
|
251 |
function publish_to_hub($deprecated = null, $feed_urls) {
|
252 |
pshb_publish_to_hub($feed_urls);
|
253 |
+
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: joshfraz, pfefferle
|
3 |
Tags: pubsubhubbub
|
4 |
Requires at least: 2.5
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 1.6.
|
7 |
|
8 |
A better way to tell the world when your blog is updated.
|
9 |
|
@@ -51,6 +51,9 @@ and [Matthias Pfefferle](http://pfefferle.org "Matthias Pfefferle") at [Notizblo
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
54 |
= 1.6.4 =
|
55 |
* removed pubsubhubbub client
|
56 |
* improvements for a better PuSH v0.4 support
|
2 |
Contributors: joshfraz, pfefferle
|
3 |
Tags: pubsubhubbub
|
4 |
Requires at least: 2.5
|
5 |
+
Tested up to: 3.6.1
|
6 |
+
Stable tag: 1.6.5
|
7 |
|
8 |
A better way to tell the world when your blog is updated.
|
9 |
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.6.5 =
|
55 |
+
* hotfix
|
56 |
+
|
57 |
= 1.6.4 =
|
58 |
* removed pubsubhubbub client
|
59 |
* improvements for a better PuSH v0.4 support
|