Minor, fix an issue where fail to extract the author PHID from an edge transaction.
This commit is contained in:
@@ -59,7 +59,10 @@ final class ManiphestTransaction extends ManiphestDAO {
|
|||||||
$phids[] = $this->getNewValue();
|
$phids[] = $this->getNewValue();
|
||||||
break;
|
break;
|
||||||
case ManiphestTransactionType::TYPE_EDGE:
|
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:
|
case ManiphestTransactionType::TYPE_ATTACH:
|
||||||
$old = $this->getOldValue();
|
$old = $this->getOldValue();
|
||||||
$new = $this->getNewValue();
|
$new = $this->getNewValue();
|
||||||
|
|||||||
Reference in New Issue
Block a user