aboutsummaryrefslogtreecommitdiff
path: root/app/Models/UserQuery.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2020-12-26 06:50:09 -0500
committerGravatar GitHub <noreply@github.com> 2020-12-26 12:50:09 +0100
commit4abb30228b70723f50499f9f00435fb3e3cd4fbe (patch)
tree8b6f9d2d6fc7cdb14efe2f543c7c261784735dcb /app/Models/UserQuery.php
parent46cb89adf842e2fbac254fc99355d6577e4e86eb (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.php2
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();