mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
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
This commit is contained in:
parent
b2cbb8f2ee
commit
c4aa0a9b9a
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ final class FundInitiativeRefundTransaction
|
|||
'%s refunded %s to %s.',
|
||||
$this->renderAuthor(),
|
||||
$amount->formatForDisplay(),
|
||||
$this->renderHandleLink($backer_phid));
|
||||
$this->renderHandle($backer_phid));
|
||||
}
|
||||
|
||||
public function getTitleForFeed() {
|
||||
|
@ -69,7 +69,7 @@ final class FundInitiativeRefundTransaction
|
|||
'%s refunded %s to %s for %s.',
|
||||
$this->renderAuthor(),
|
||||
$amount->formatForDisplay(),
|
||||
$this->renderHandleLink($backer_phid),
|
||||
$this->renderHandle($backer_phid),
|
||||
$this->renderObject());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue