mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-05 07:03:29 -04:00
Light Boolean search implementation (#1828)
* Light Boolean search implementation "Hello intitle:World OR date:P1D example" https://github.com/FreshRSS/FreshRSS/issues/879 * Doc Boolean search * Doc typos
This commit is contained in:
committed by
GitHub
parent
881ed44005
commit
84d891f8cf
@@ -41,7 +41,7 @@ class FreshRSS_UserQuery {
|
||||
$query['search'] = '';
|
||||
}
|
||||
// linked to deeply with the search object, need to use dependency injection
|
||||
$this->search = new FreshRSS_Search($query['search']);
|
||||
$this->search = new FreshRSS_BooleanSearch($query['search']);
|
||||
if (isset($query['state'])) {
|
||||
$this->state = $query['state'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user