mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Transactions - fix doorkeeper feed story error
Summary: missing a setHandles on this codepath I think...? Fixes T6300. Test Plan: not actually tested - I just think this is the fix since the other renderX methods all do this setHandles thing and I can't figure out how handles get set otherwise... Reviewers: epriestley, avivey Reviewed By: epriestley, avivey Subscribers: avivey, Korvin, epriestley Maniphest Tasks: T6300 Differential Revision: https://secure.phabricator.com/D10699
This commit is contained in:
parent
29fbe8ba7f
commit
7d9eb8baaf
1 changed files with 3 additions and 1 deletions
|
@ -110,7 +110,9 @@ class PhabricatorApplicationTransactionFeedStory
|
||||||
$xactions = array();
|
$xactions = array();
|
||||||
$xaction_phids = $this->getValue('transactionPHIDs');
|
$xaction_phids = $this->getValue('transactionPHIDs');
|
||||||
foreach ($xaction_phids as $xaction_phid) {
|
foreach ($xaction_phids as $xaction_phid) {
|
||||||
$xactions[] = $this->getObject($xaction_phid);
|
$xaction = $this->getObject($xaction_phid);
|
||||||
|
$xaction->setHandles($this->getHandles());
|
||||||
|
$xactions[] = $xaction;
|
||||||
}
|
}
|
||||||
|
|
||||||
$primary = $this->getPrimaryTransaction();
|
$primary = $this->getPrimaryTransaction();
|
||||||
|
|
Loading…
Reference in a new issue