Skip to content

Commit

Permalink
Backport fix getDataForEditmode coreshop#1361
Browse files Browse the repository at this point in the history
for 2.1 series
  • Loading branch information
Cruiser13 authored May 1, 2020
1 parent 6b1e252 commit 8a991f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CoreShop/Component/Pimcore/DataObject/DataLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function getDataForObject(DataObject\Concrete $data, $loadedObjects = [])
if ($def instanceof Money) {
$value = $fieldData;
} else {
$value = $def->getDataForEditmode($fieldData, $data, false);
$value = $def->getDataForEditmode($fieldData, $data);
}

$objectData[$key] = $value;
Expand Down

0 comments on commit 8a991f2

Please sign in to comment.