Skip to content

Commit

Permalink
Fix OpenID Connect RP-Initiated Logout translation (#17448)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco authored Feb 4, 2025
1 parent 60c8243 commit bb3157f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<span asp-validation-for="SignedOutCallbackPath"></span>
<span class="hint">@T["The request path within the application's base path where the user-agent will be redirected after signing out from the identity provider."]</span>
<span class="hint">
@T["For more information about 'post_logout_redirect_uri', visit: <a href=\"{0}\" target=\"_blank\">", "https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RedirectionAfterLogout"]</a>
@T["For more information about 'post_logout_redirect_uri', visit: <a href=\"{0}\" target=\"_blank\">OpenID Connect RP-Initiated Logout 1.0</a>", "https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RedirectionAfterLogout"]
</span>
</div>

Expand Down

2 comments on commit bb3157f

@MikeAlhayek
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does "OpenID Connect RP-Initiated Logout 1.0" means?

Why didn't you use "Redirection to RP After Logout" as per the referenced site?

@hishamco
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does "OpenID Connect RP-Initiated Logout 1.0" means?

I'm not sure, I just fixing a missing tag and localization issue

Please sign in to comment.