mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Fix #2756
This commit is contained in:
@@ -127,9 +127,6 @@ class Search implements SearchInterface
|
|||||||
$matches = [];
|
$matches = [];
|
||||||
preg_match_all($pattern, $filteredQuery, $matches);
|
preg_match_all($pattern, $filteredQuery, $matches);
|
||||||
|
|
||||||
var_dump($matches[0]);
|
|
||||||
exit;
|
|
||||||
|
|
||||||
foreach ($matches[0] as $match) {
|
foreach ($matches[0] as $match) {
|
||||||
$this->extractModifier($match);
|
$this->extractModifier($match);
|
||||||
$filteredQuery = str_replace($match, '', $filteredQuery);
|
$filteredQuery = str_replace($match, '', $filteredQuery);
|
||||||
|
Reference in New Issue
Block a user