Skip to content

Commit 8ae736b

Browse files
authored
MAGETWO-66357: Fix for Product Attribute's Conditions #6400
2 parents 51a76bc + 54df914 commit 8ae736b

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)