From 03afb97ff20bd5480ecfa0fa809e3b751bd973e8 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Wed, 27 Sep 2023 18:50:08 +0200 Subject: [PATCH] Correct Transaction text when changing Diffusion URI I/O type Summary: After changing the I/O type of a Diffusion repository URI, the transaction history incorrectly shows a message which talks about changing the URI's Display type instead. Closes T15648 Test Plan: Change the I/O type of a Diffusion repo URI and look at that URIs history. Reviewers: O1 Blessed Committers, avivey Reviewed By: O1 Blessed Committers, avivey Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Maniphest Tasks: T15648 Differential Revision: https://we.phorge.it/D25443 --- .../repository/storage/PhabricatorRepositoryURITransaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/repository/storage/PhabricatorRepositoryURITransaction.php b/src/applications/repository/storage/PhabricatorRepositoryURITransaction.php index 241a95dad9..49d1a44943 100644 --- a/src/applications/repository/storage/PhabricatorRepositoryURITransaction.php +++ b/src/applications/repository/storage/PhabricatorRepositoryURITransaction.php @@ -57,7 +57,7 @@ final class PhabricatorRepositoryURITransaction $new_label = idx(idx($map, $new, array()), 'label', $new); return pht( - '%s changed the display type for this URI from "%s" to "%s".', + '%s changed the I/O type for this URI from "%s" to "%s".', $this->renderHandleLink($author_phid), $old_label, $new_label);