We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a41ec4 commit 299d5ccCopy full SHA for 299d5cc
app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php
@@ -286,7 +286,8 @@ protected function _addAttributeValuesToRow(\Magento\Framework\Model\AbstractMod
286
287
if ($this->isMultiselect($attributeCode)) {
288
$values = [];
289
- $attributeValue = explode(Import::DEFAULT_GLOBAL_MULTI_VALUE_SEPARATOR, $attributeValue);
+ $attributeValue =
290
+ $attributeValue ? explode(Import::DEFAULT_GLOBAL_MULTI_VALUE_SEPARATOR, $attributeValue) : [];
291
foreach ($attributeValue as $value) {
292
$values[] = $this->getAttributeValueById($attributeCode, $value);
293
}
0 commit comments