mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Provide missing default attachment list for Files transactions
Summary: Ref T13682. This property may not exist, and should defualt to an empty array if not present. Test Plan: Created a new object. Maniphest Tasks: T13682 Differential Revision: https://secure.phabricator.com/D21834
This commit is contained in:
parent
cc44ae32c5
commit
8cd02e6727
1 changed files with 1 additions and 1 deletions
|
@ -2249,7 +2249,7 @@ abstract class PhabricatorApplicationTransactionEditor
|
||||||
foreach ($remarkup_changes as $remarkup_change) {
|
foreach ($remarkup_changes as $remarkup_change) {
|
||||||
$metadata = $remarkup_change->getMetadata();
|
$metadata = $remarkup_change->getMetadata();
|
||||||
|
|
||||||
$attached_phids = idx($metadata, 'attachedFilePHIDs');
|
$attached_phids = idx($metadata, 'attachedFilePHIDs', array());
|
||||||
foreach ($attached_phids as $file_phid) {
|
foreach ($attached_phids as $file_phid) {
|
||||||
$new_map[$file_phid] = PhabricatorFileAttachment::MODE_ATTACH;
|
$new_map[$file_phid] = PhabricatorFileAttachment::MODE_ATTACH;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue