Skip to content

Commit 2bf9315

Browse files
committed
Merge remote-tracking branch 'origin/fix/5132' into fix/5132
2 parents 81f7ae6 + 294da98 commit 2bf9315

File tree

2 files changed

+4
-4
lines changed
  • app

2 files changed

+4
-4
lines changed

app/code/core/Mage/Core/Model/String/Normalized.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
* @copyright For copyright and license information, read the COPYING.txt file.
77
* @link /COPYING.txt
88
* @license Open Software License (OSL 3.0)
9-
* @package Mage_ConfigurableSwatches
9+
* @package Mage_Core
1010
*/
1111

1212
/**
1313
* Wrapper to modify a string value with a method to get the original string value
1414
*
15-
* @package Mage_ConfigurableSwatches
15+
* @package Mage_Core
1616
*/
1717
class Mage_Core_Model_String_Normalized implements Stringable
1818
{
@@ -40,7 +40,7 @@ public function __toString(): string
4040
}
4141

4242
/**
43-
* Get non-nomalized original value
43+
* Get non-normalized original value
4444
*/
4545
public function getOriginalValue(): ?string
4646
{

app/design/frontend/rwd/default/template/configurableswatches/catalog/product/list/swatches.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (Mage::helper('configurableswatches')->isEnabled() && $_product && $_product-
4545
$_liClass .= ' wide-swatch';
4646
}
4747
if (Mage::helper('configurableswatches/productlist')->swatchMatchesFilter($_optionValue)) {
48-
$_liClass .= 'filter-match';
48+
$_liClass .= ' filter-match';
4949
}
5050
?>
5151
<li class="option-<?php echo $_optionCode; ?><?php echo $_liClass; ?>"

0 commit comments

Comments
 (0)