Skip to content

Commit

Permalink
MAGETWO-66357: Fix for Product Attribute's Conditions #6400
Browse files Browse the repository at this point in the history
  • Loading branch information
vrann authored Mar 20, 2017
2 parents 51a76bc + 54df914 commit 8ae736b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/code/Magento/Rule/Model/Condition/AbstractCondition.php
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,8 @@ public function getValueName()
}
if (!empty($valueArr)) {
$value = implode(', ', $valueArr);
} elseif (is_array($value)) {
$value = implode(', ', $value);
}
return $value;
}
Expand Down

0 comments on commit 8ae736b

Please sign in to comment.