Skip to content

Commit

Permalink
Check if attribute exists case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
ah-net committed Jul 25, 2024
1 parent 47d098d commit b805051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Catalog/Layer/Url/Strategy/FilterSlugManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function createFilterSlugByAttributeOptions(array $options)
}

$this->getLookupTable();
if (isset($this->lookupTable[$option->getLabel()])) {
if (isset($this->lookupTable[strtolower($option->getLabel())])) {
continue;
}

Expand Down

0 comments on commit b805051

Please sign in to comment.