From 44f2010a0b60ac1233d832ba7ea4a0ad9ef3eb2e Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Sat, 20 May 2023 11:43:00 +0200 Subject: [PATCH] PhabricatorPhabricatorAuthProvider: Remove unnecessary Remarkup Summary: This is a small fix in a specific user message example. See other messages in the very same file which also use ``. Here the problematic phrase: {F292970} See the example in the phrase "Use lowercase letters, digits, and periods. For example: ...". Test Plan: After this change, the specific message "The URI where the OAuth server is installed. For example" from the page `/auth/config/edit/?provider=PhabricatorPhabricatorAuthProvider` does not have anymore backticks shown to the end user. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25232 --- .../auth/provider/PhabricatorPhabricatorAuthProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/auth/provider/PhabricatorPhabricatorAuthProvider.php b/src/applications/auth/provider/PhabricatorPhabricatorAuthProvider.php index 4c1c31f146..0d729837b4 100644 --- a/src/applications/auth/provider/PhabricatorPhabricatorAuthProvider.php +++ b/src/applications/auth/provider/PhabricatorPhabricatorAuthProvider.php @@ -169,7 +169,7 @@ final class PhabricatorPhabricatorAuthProvider phutil_tag( 'tt', array(), - '`example.oauthserver`')))); + 'example.oauthserver')))); } else { $form ->appendChild( -- 2.51.2