mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Minor, fix an issue where fail to extract the author PHID from an edge transaction.
This commit is contained in:
parent
ddf67fce58
commit
bf9cd55577
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ final class ManiphestTransaction extends ManiphestDAO {
|
|||
$phids[] = $this->getNewValue();
|
||||
break;
|
||||
case ManiphestTransactionType::TYPE_EDGE:
|
||||
return array_keys($this->getOldValue() + $this->getNewValue());
|
||||
$phids = array_merge(
|
||||
$phids,
|
||||
array_keys($this->getOldValue() + $this->getNewValue()));
|
||||
break;
|
||||
case ManiphestTransactionType::TYPE_ATTACH:
|
||||
$old = $this->getOldValue();
|
||||
$new = $this->getNewValue();
|
||||
|
|
Loading…
Reference in a new issue