Skip to content

Commit fdd4952

Browse files
committed
MAGETWO-85699: Multiselect attribute values is not searchable under Quick Search when more than one value is selected
1 parent ff62bdb commit fdd4952

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/CatalogSearch/Model/ResourceModel

1 file changed

+2
-1
lines changed

app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ public function processAttributeValue($attribute, $value)
108108
) {
109109
$result = $value;
110110
} elseif ($this->isTermFilterableAttribute($attribute)
111-
|| ($attribute->getIsSearchable() && in_array($attribute->getFrontendInput(), ['select', 'multiselect']))
111+
|| ($attribute->getIsSearchable()
112+
&& in_array($attribute->getFrontendInput(), ['select', 'multiselect']))
112113
) {
113114
$result = '';
114115
}

0 commit comments

Comments
 (0)