Skip to content

Commit e18bcb5

Browse files
MAGETWO-91750: Multiselect attribute values is not searchable under Quick Search when more than one value is selected
- Fix static testd
1 parent f9b4595 commit e18bcb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,8 +653,9 @@ private function getAttributeOptionValue($attributeId, $valueIds, $storeId)
653653
}
654654
}
655655
foreach ($attributeValueIds as $attrValueId) {
656-
if (isset($this->attributeOptions[$optionKey][$attrValueId]))
656+
if (isset($this->attributeOptions[$optionKey][$attrValueId])) {
657657
$attributeOptionValue .= $this->attributeOptions[$optionKey][$attrValueId] . ' ';
658+
}
658659
}
659660
return empty($attributeOptionValue) ? null : trim($attributeOptionValue);
660661
}

0 commit comments

Comments
 (0)