diff options
| author | 2020-12-26 06:50:09 -0500 | |
|---|---|---|
| committer | 2020-12-26 12:50:09 +0100 | |
| commit | 4abb30228b70723f50499f9f00435fb3e3cd4fbe (patch) | |
| tree | 8b6f9d2d6fc7cdb14efe2f543c7c261784735dcb /app/Models/UserQuery.php | |
| parent | 46cb89adf842e2fbac254fc99355d6577e4e86eb (diff) | |
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
Diffstat (limited to 'app/Models/UserQuery.php')
| -rw-r--r-- | app/Models/UserQuery.php | 2 |
1 files changed, 1 insertions, 1 deletions
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<type>[acfs])(_(?P<id>\d+))?/', $get, $matches)) { + if (preg_match('/(?P<type>[acfst])(_(?P<id>\d+))?/', $get, $matches)) { switch ($matches['type']) { case 'a': $this->parseAll(); |
