Skip to content

Commit

Permalink
Merge pull request #1372 from Cruiser13/patch-6
Browse files Browse the repository at this point in the history
Backport fix getDataForEditmode #1361
  • Loading branch information
dpfaffenbauer authored May 4, 2020
2 parents 6b1e252 + 8a991f2 commit 58a325d
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 58a325d

Please sign in to comment.