Skip to content

Commit 843cae7

Browse files
committed
MAGETWO-39917: Orders are displayed in descending order in admin panel
1 parent 7703248 commit 843cae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FulltextFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function apply(DbCollection $collection, $filters)
4949
foreach ($filters as $filter) {
5050
$collection->getSelect()
5151
->where(
52-
'MATCH(' . implode(',', $columns) . ') AGAINST(? IN BOOLEAN MODE)',
52+
'MATCH(' . implode(',', $columns) . ') AGAINST(?)',
5353
$filter['condition']
5454
);
5555
}

0 commit comments

Comments
 (0)