File tree 1 file changed +3
-3
lines changed
app/code/Magento/CatalogSearch/Model/Layer/Filter
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ public function getCurrencyRate()
174
174
*/
175
175
protected function _renderRangeLabel ($ fromPrice , $ toPrice )
176
176
{
177
- $ fromPrice *= $ this ->getCurrencyRate ();
177
+ $ fromPrice *= $ this ->getCurrencyRate ();
178
178
if ($ toPrice ) {
179
179
$ toPrice *= $ this ->getCurrencyRate ();
180
180
}
@@ -216,7 +216,7 @@ protected function _getItemsData()
216
216
if (strpos ($ key , '_ ' ) === false ) {
217
217
continue ;
218
218
}
219
- $ data [] = $ this ->prepareData ($ key , $ count, $ data );
219
+ $ data [] = $ this ->prepareData ($ key , $ count );
220
220
}
221
221
}
222
222
@@ -267,7 +267,7 @@ private function prepareData($key, $count)
267
267
}
268
268
$ label = $ this ->_renderRangeLabel (
269
269
empty ($ from ) ? 0 : $ from ,
270
- empty ( $ to ) ? $ to : $ to
270
+ $ to
271
271
);
272
272
$ value = $ from . '- ' . $ to . $ this ->dataProvider ->getAdditionalRequestData ();
273
273
You can’t perform that action at this time.
0 commit comments