@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 FundRefund transaction calls

Summary: This function `renderHandleLink` doesn't exist. Update call.

Test Plan: I'm still lost on how to refund a transaction? Existing?

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2 -2
+2 -2
src/applications/fund/xaction/FundInitiativeRefundTransaction.php
··· 55 55 '%s refunded %s to %s.', 56 56 $this->renderAuthor(), 57 57 $amount->formatForDisplay(), 58 - $this->renderHandleLink($backer_phid)); 58 + $this->renderHandle($backer_phid)); 59 59 } 60 60 61 61 public function getTitleForFeed() { ··· 69 69 '%s refunded %s to %s for %s.', 70 70 $this->renderAuthor(), 71 71 $amount->formatForDisplay(), 72 - $this->renderHandleLink($backer_phid), 72 + $this->renderHandle($backer_phid), 73 73 $this->renderObject()); 74 74 } 75 75