Skip to content

Commit 997d7ef

Browse files
authored
Merge pull request #155 from dshanske/urlfromurl
Bug Fix
2 parents af8672f + 53e1c26 commit 997d7ef

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

includes/class-indieauth-authorization-endpoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function verify( $request ) {
179179
if ( array() === array_diff_assoc( $params, $token ) ) {
180180
$this->delete_code( $code, $token['user'] );
181181

182-
$return = array( 'me' => get_url_from_url( $user->ID ) );
182+
$return = array( 'me' => get_url_from_user( $user->ID ) );
183183

184184
if ( isset( $token['scope'] ) ) {
185185
$return['scope'] = $token['scope'];

indieauth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: IndieAuth
44
* Plugin URI: https://github.com/indieweb/wordpress-indieauth/
55
* Description: IndieAuth is a way to allow users to use their own domain to sign into other websites and services
6-
* Version: 3.4.1
6+
* Version: 3.4.2
77
* Author: IndieWebCamp WordPress Outreach Club
88
* Author URI: https://indieweb.org/WordPress_Outreach_Club
99
* License: MIT

languages/indieauth.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This file is distributed under the MIT.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: IndieAuth 3.4.1\n"
5+
"Project-Id-Version: IndieAuth 3.4.2\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/wordpress-indieauth\n"
8-
"POT-Creation-Date: 2019-08-03 03:59:19+00:00\n"
8+
"POT-Creation-Date: 2019-08-08 03:49:41+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"

readme.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Requires at least:** 4.9.9
55
**Requires PHP:** 5.4
66
**Tested up to:** 5.2.2
7-
**Stable tag:** 3.4.1
7+
**Stable tag:** 3.4.2
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
1010
**Donate link:** https://opencollective.com/indieweb
@@ -143,6 +143,9 @@ In version 2.0, we added an IndieAuth endpoint to this plugin, which previously
143143

144144
Project and support maintained on github at [indieweb/wordpress-indieauth](https://github.com/indieweb/wordpress-indieauth).
145145

146+
### 3.4.2 ###
147+
* Repair issue with other flow caused by function name issue
148+
146149
### 3.4.1 ###
147150
* Add setting to set the user who will be using the site URL as their URL as opposed to their author URL which removes dependency on Indieweb plugin for this.
148151

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: IndieAuth, IndieWeb, IndieWebCamp, login
44
Requires at least: 4.9.9
55
Requires PHP: 5.4
66
Tested up to: 5.2.2
7-
Stable tag: 3.4.1
7+
Stable tag: 3.4.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
1010
Donate link: https://opencollective.com/indieweb
@@ -143,6 +143,9 @@ In version 2.0, we added an IndieAuth endpoint to this plugin, which previously
143143

144144
Project and support maintained on github at [indieweb/wordpress-indieauth](https://github.com/indieweb/wordpress-indieauth).
145145

146+
= 3.4.2 =
147+
* Repair issue with other flow caused by function name issue
148+
146149
= 3.4.1 =
147150
* Add setting to set the user who will be using the site URL as their URL as opposed to their author URL which removes dependency on Indieweb plugin for this.
148151

0 commit comments

Comments
 (0)