1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02: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:
Chad Little 2017-05-09 09:54:49 -07:00
parent b2cbb8f2ee
commit c4aa0a9b9a

View file

@ -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());
}