From 6d57a9de47be4bb80a2121b6c4b8ebf278b93d70 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 23 Dec 2025 11:58:51 +0100 Subject: Fix parsing of literal "or" in regex (#8338) fix https://github.com/FreshRSS/FreshRSS/issues/7879 --- app/Models/Search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/Search.php') 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); -- cgit v1.2.3