Skip to content

Commit

Permalink
fixed acct display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Nov 3, 2018
1 parent e92364a commit 66691eb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion includes/class-webfinger.php
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ public static function get_user_resource( $id_or_name_or_object, $with_protocol
$resource = $user->user_login . '@' . parse_url( home_url(), PHP_URL_HOST );

if ( $with_protocol ) {
'acct:' . $resource;
$resource = 'acct:' . $resource;
}
}

Expand Down
4 changes: 2 additions & 2 deletions languages/webfinger.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: WebFinger 3.2.2\n"
"Project-Id-Version: WebFinger 3.2.3\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/wordpress-webfinger\n"
"POT-Creation-Date: 2018-11-03 17:17:02+00:00\n"
"POT-Creation-Date: 2018-11-03 17:27:52+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
6 changes: 5 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Tags:** well-known, discovery, webfinger, JRD, ostatus, activitypub
**Requires at least:** 4.2
**Tested up to:** 4.9.8
**Stable tag:** 3.2.2
**Stable tag:** 3.2.3
**License:** MIT
**License URI:** https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -67,6 +67,10 @@ This versions drops classic WebFinger support to keep the plugin short and simpl

Project maintained on github at [pfefferle/wordpress-webfinger](https://github.com/pfefferle/wordpress-webfinger).

### 3.2.3 ###

* fixed `acct` scheme for discovery

### 3.2.2 ###

* fixed typo (thanks @ivucica)
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
Tags: well-known, discovery, webfinger, JRD, ostatus, activitypub
Requires at least: 4.2
Tested up to: 4.9.8
Stable tag: 3.2.2
Stable tag: 3.2.3
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -67,6 +67,10 @@ This versions drops classic WebFinger support to keep the plugin short and simpl

Project maintained on github at [pfefferle/wordpress-webfinger](https://github.com/pfefferle/wordpress-webfinger).

= 3.2.3 =

* fixed `acct` scheme for discovery

= 3.2.2 =

* fixed typo (thanks @ivucica)
Expand Down
2 changes: 1 addition & 1 deletion webfinger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WebFinger
* Plugin URI: https://github.com/pfefferle/wordpress-webfinger
* Description: WebFinger for WordPress
* Version: 3.2.2
* Version: 3.2.3
* Author: Matthias Pfefferle
* Author URI: https://notiz.blog/
* License: MIT
Expand Down

0 comments on commit 66691eb

Please sign in to comment.