aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Search.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-12-23 11:58:51 +0100
committerGravatar GitHub <noreply@github.com> 2025-12-23 11:58:51 +0100
commit6d57a9de47be4bb80a2121b6c4b8ebf278b93d70 (patch)
tree6cba47ef73451a678d9fd152fa385ac75c02460f /app/Models/Search.php
parentcf3ca7076566909bd5b6eb519036f8d1b857f356 (diff)
Fix parsing of literal "or" in regex (#8338)
fix https://github.com/FreshRSS/FreshRSS/issues/7879
Diffstat (limited to 'app/Models/Search.php')
-rw-r--r--app/Models/Search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Search.php b/app/Models/Search.php
index 046f61a2b..2b207134c 100644
--- a/app/Models/Search.php
+++ b/app/Models/Search.php
@@ -114,7 +114,7 @@ class FreshRSS_Search implements \Stringable {
public function __construct(string $input) {
$input = self::cleanSearch($input);
$input = self::unescape($input);
- $input = FreshRSS_BooleanSearch::unescapeLiteralParentheses($input);
+ $input = FreshRSS_BooleanSearch::unescapeLiterals($input);
$this->raw_input = $input;
$input = $this->parseNotEntryIds($input);