Skip to content

Commit 599f8cb

Browse files
author
nsyvokonenko
committed
MAGETWO-37614: Stabilize story
- L3
1 parent b7749d4 commit 599f8cb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/code/Magento/Reports/Model/Resource/Quote/Collection.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ public function addCustomerData($filter = null)
8484
if (isset($filter['customer_name'])) {
8585
$customerName = $customersSelect->getAdapter()
8686
->getConcatSql(['customer.firstname', 'customer.lastname'], ' ');
87-
$customersSelect->where(
88-
$customerName . ' LIKE ?', '%' . $filter['customer_name'] . '%'
89-
);
87+
$customersSelect->where($customerName . ' LIKE ?', '%' . $filter['customer_name'] . '%');
9088
}
9189
if (isset($filter['email'])) {
9290
$customersSelect->where('customer.email LIKE ?', '%' . $filter['email'] . '%');

0 commit comments

Comments
 (0)