diff options
| author | 2024-10-02 08:20:15 +0200 | |
|---|---|---|
| committer | 2024-10-02 08:20:15 +0200 | |
| commit | 2d0897ea747208356d8c70cc25e327d7f08c523c (patch) | |
| tree | 3965faf6c106772c5c2fa2faff56c43b769b67be /app/Models/UserQuery.php | |
| parent | 2489b6259ad334407c023eb60722c9746d973542 (diff) | |
Allow dynamic search operator in user queries (#6851)
* Allow dynamic search operator in user queries
fix https://github.com/FreshRSS/FreshRSS/issues/6849
* Other approach
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 d701b6b44..1ec8ee148 100644 --- a/app/Models/UserQuery.php +++ b/app/Models/UserQuery.php @@ -95,7 +95,7 @@ class FreshRSS_UserQuery { } // linked too deeply with the search object, need to use dependency injection - $this->search = new FreshRSS_BooleanSearch($query['search'], 0, 'AND', false); + $this->search = new FreshRSS_BooleanSearch($query['search'], 0, 'AND', allowUserQueries: true); if (!empty($query['state'])) { $this->state = intval($query['state']); } |
