Skip to content

Commit 9fb9ed7

Browse files
committed
ACP2E-1435: Abandoned Cart's Filter Function Doesn't Work With Email Addresses Contain A + Sign
1 parent 528ed74 commit 9fb9ed7

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned

1 file changed

+1
-1
lines changed

app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function _prepareCollection()
6060
$filter = $this->getParam($this->getVarNameFilter(), []);
6161
if ($filter) {
6262
$filter = base64_decode($filter);
63-
parse_str(urldecode($filter), $data);
63+
parse_str(($filter), $data);
6464
}
6565

6666
if (!empty($data)) {

0 commit comments

Comments
 (0)