We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5588999 commit 0cf5ae0Copy full SHA for 0cf5ae0
lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FulltextFilter.php
@@ -70,7 +70,8 @@ function ($column) use ($alias) {
70
*/
71
private function escapeAgainstValue(string $value): string
72
{
73
- return preg_replace('/([+\-><\(\)~*@]+)/', ' ', $value);
+ $value = preg_replace('/([+\-><\(\)~*]+)/', ' ', $value);
74
+ return preg_replace('/(@)/', '\_', $value);
75
}
76
77
/**
0 commit comments