We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e435755 + 3549798 commit 556a020Copy full SHA for 556a020
1 file changed
Classes/Utility/SearchTerm.php
@@ -17,6 +17,6 @@ class SearchTerm
17
{
18
public static function sanitize(string $input): string
19
20
- return str_replace(['=', '>', '<', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '\\', '/'], ['', '', '', '(', '\)', '\{', '\}', '\[', '\]', '\^', '\"', '\~', '\*', '\?', '\:', '\\\\', '\/'], $input);
+ return str_replace(['\\', '=', '>', '<', '(', ')', '{', '}', '[', ']', '^', '"', '~', '*', '?', ':', '/'], '', $input);
21
}
22
0 commit comments