@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
src/applications/repository/storage/PhabricatorRepositoryURITransaction.php
··· 57 57 $new_label = idx(idx($map, $new, array()), 'label', $new); 58 58 59 59 return pht( 60 - '%s changed the display type for this URI from "%s" to "%s".', 60 + '%s changed the I/O type for this URI from "%s" to "%s".', 61 61 $this->renderHandleLink($author_phid), 62 62 $old_label, 63 63 $new_label);