We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9adcd9 commit bb55549Copy full SHA for bb55549
app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml
@@ -23,7 +23,9 @@
23
<?php if ($block->isLimitCurrent($_key)):?>
24
selected="selected"
25
<?php endif ?>>
26
- <?= $block->escapeHtml($localeFormatter->formatNumber((int) $_limit)) ?>
+ <?= $block->escapeHtml(
27
+ is_numeric($_limit) ? $localeFormatter->formatNumber((int) $_limit) : $_limit
28
+ ) ?>
29
</option>
30
<?php endforeach; ?>
31
</select>
0 commit comments