Skip to content

Commit 740d107

Browse files
committed
MAGETWO-54682: Fast load of product options
- fix tests
1 parent a690f4c commit 740d107

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Catalog/Model/Product/Attribute/Backend

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private function substituteNullsWithDefaultValues(array $rawData)
6868
} elseif (isset($rawData[$key . '_default'])) {
6969
$processedValue = $rawData[$key . '_default'];
7070
} else {
71-
$processedValue = '';
71+
$processedValue = null;
7272
}
7373
$processedData[$key] = $processedValue;
7474
}

0 commit comments

Comments
 (0)