mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-15 18:53:57 -04:00
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
This commit is contained in:
committed by
GitHub
parent
46cb89adf8
commit
4abb30228b
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user