@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.

Fix a transposed feed story in Badges

Summary: See <https://discourse.phabricator-community.org/t/badge-quality-from-and-to-interchanged-in-activity-log/987>. These are swapped.

Test Plan: Changed a badge quality, viewed feed story, saw it position the strings correctly.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D18870

+3 -3
+3 -3
src/applications/badges/xaction/PhabricatorBadgesBadgeQualityTransaction.php
··· 37 37 $new = $this->getQualityLabel($this->getNewValue()); 38 38 39 39 return pht( 40 - '%s updated %s quality from %s to %s.', 40 + '%s updated the quality of %s from %s to %s.', 41 41 $this->renderAuthor(), 42 42 $this->renderObject(), 43 - $new, 44 - $old); 43 + $old, 44 + $new); 45 45 } 46 46 47 47 public function validateTransactions($object, array $xactions) {