Skip to content

Commit 73cf260

Browse files
committed
MAGETWO-66357: Fix for Product Attribute's Conditions #6400
- Merge Pull Request #6400 from NikolasSumrak/magento2:patch-4
2 parents 535860a + c158dc8 commit 73cf260

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/code/Magento/Rule/Model/Condition/AbstractCondition.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,8 @@ public function getValueName()
441441
}
442442
if (!empty($valueArr)) {
443443
$value = implode(', ', $valueArr);
444+
} elseif(is_array($value)) {
445+
$value = implode(', ', $value);
444446
}
445447
return $value;
446448
}

0 commit comments

Comments
 (0)