Skip to content

Commit

Permalink
issue #19205 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-rajawat committed Nov 18, 2018
1 parent d14510f commit aa379ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Bundle/Model/Product/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ private function multiToFlatArray(array $array)
if (is_array($value)) {
$flatArray = array_merge($flatArray, $this->multiToFlatArray($value));
} else {
$flatArray[$key] = $value;
$flatArray[] = $value;
}
}

Expand Down

0 comments on commit aa379ea

Please sign in to comment.