From 4abb30228b70723f50499f9f00435fb3e3cd4fbe Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Sat, 26 Dec 2020 06:50:09 -0500 Subject: Fix user queries with labels (#3285) Before user queries with labels were not translated. Actually, it was not even processed. Now those user queries are translated properly. See #3215 --- app/Models/UserQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/UserQuery.php') diff --git a/app/Models/UserQuery.php b/app/Models/UserQuery.php index b882a4680..f63d2720f 100644 --- a/app/Models/UserQuery.php +++ b/app/Models/UserQuery.php @@ -76,7 +76,7 @@ class FreshRSS_UserQuery { */ private function parseGet($get) { $this->get = $get; - if (preg_match('/(?P[acfs])(_(?P\d+))?/', $get, $matches)) { + if (preg_match('/(?P[acfst])(_(?P\d+))?/', $get, $matches)) { switch ($matches['type']) { case 'a': $this->parseAll(); -- cgit v1.2.3