diff --git a/wp-content/plugins/pubsubhubbub/includes/functions.php b/wp-content/plugins/pubsubhubbub/includes/functions.php index b3718e23af795f6c047b64754cbfa112d0349a29..1f0d7e3a873834794e70f63c63bfc3c09ed53dac 100644 --- a/wp-content/plugins/pubsubhubbub/includes/functions.php +++ b/wp-content/plugins/pubsubhubbub/includes/functions.php @@ -52,5 +52,7 @@ function pubsubhubbub_show_discovery() { * @return boolean */ function pubsubhubbub_get_self_link() { - return trailingslashit( home_url( add_query_arg( null, null ) ) ); + $host = wp_parse_url( home_url() ); + + return esc_url( apply_filters( 'self_link', set_url_scheme( 'http://' . $host['host'] . wp_unslash( $_SERVER['REQUEST_URI'] ) ) ) ); } diff --git a/wp-content/plugins/pubsubhubbub/languages/pubsubhubbub.pot b/wp-content/plugins/pubsubhubbub/languages/pubsubhubbub.pot index 07caa3c658bf507bdc5df81a5047294e65bdc021..eff84d4d08a01d7a909a282ce731e8b0ce56d977 100644 --- a/wp-content/plugins/pubsubhubbub/languages/pubsubhubbub.pot +++ b/wp-content/plugins/pubsubhubbub/languages/pubsubhubbub.pot @@ -1,15 +1,15 @@ -# Copyright (C) 2018 Matthias Pfefferle +# Copyright (C) 2019 Matthias Pfefferle # This file is distributed under the MIT. msgid "" msgstr "" -"Project-Id-Version: WebSub/PubSubHubbub 3.0.1\n" +"Project-Id-Version: WebSub/PubSubHubbub 3.0.2\n" "Report-Msgid-Bugs-To: " "https://wordpress.org/support/plugin/wordpress-pubsubhubbub\n" -"POT-Creation-Date: 2018-10-07 13:43:47+00:00\n" +"POT-Creation-Date: 2019-02-10 21:23:48+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "X-Generator: grunt-wp-i18n1.0.2\n" diff --git a/wp-content/plugins/pubsubhubbub/pubsubhubbub.php b/wp-content/plugins/pubsubhubbub/pubsubhubbub.php index 65c9be0f62248b832182246f7061524dcfc4ecb5..6e980c9e7fefd00675042c4c04539e34ed1c328b 100755 --- a/wp-content/plugins/pubsubhubbub/pubsubhubbub.php +++ b/wp-content/plugins/pubsubhubbub/pubsubhubbub.php @@ -3,7 +3,7 @@ * Plugin Name: WebSub/PubSubHubbub * Plugin URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub/ * Description: A better way to tell the world when your blog is updated. - * Version: 3.0.1 + * Version: 3.0.2 * Author: Matthias Pfefferle * Author URI: https://notiz.blog/ * License: MIT diff --git a/wp-content/plugins/pubsubhubbub/readme.txt b/wp-content/plugins/pubsubhubbub/readme.txt index a863f3d7f556422c376446ed7a43e165cd564e8a..21b66e201b1b8eea070f1a2b92c525f9eccb9d7e 100644 --- a/wp-content/plugins/pubsubhubbub/readme.txt +++ b/wp-content/plugins/pubsubhubbub/readme.txt @@ -3,8 +3,8 @@ Contributors: pfefferle, joshfraz Donate link: https://notiz.blog/donate/ Tags: webhooks, websub, puhsubhubbub, pubsub, ping, push, indieweb, openweb, ostatus Requires at least: 4.5 -Tested up to: 4.9.8 -Stable tag: 3.0.1 +Tested up to: 5.1 +Stable tag: 3.0.2 A better way to tell the world when your blog is updated. @@ -73,6 +73,10 @@ A WebSub Subscriber is an implementation that discovers the hub and topic URL gi Project maintained on github at [pubsubhubbub/wordpress-pubsubhubbub](https://github.com/pubsubhubbub/wordpress-pubsubhubbub). += 3.0.2 = + +* better `self-link` generator + = 3.0.1 = * add donation button