FIX #152 force write image ID

ManyManyList::add did not call write on dataObject, so the image was never attached
This commit is contained in:
Thierry François 2018-03-06 14:36:10 +02:00
parent e26ad4548b
commit 482139fd35
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ class BulkUploadHandler extends RequestHandler
$fileRelationName = $this->component->getFileRelationName($this->gridField);
$record->{"{$fileRelationName}ID"} = $fileID;
$record->write(); //HasManyList call write on record but not ManyManyList, so we call it here again
$this->gridField->list->add($record);
if ($this->component->getAutoPublishDataObject() && $record->hasExtension('Versioned'))