mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-30 20:23:01 -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
@@ -40,7 +40,7 @@ class FreshRSS_entry_Controller extends Minz_ActionController {
|
||||
$get = Minz_Request::param('get');
|
||||
$next_get = Minz_Request::param('nextGet', $get);
|
||||
$id_max = Minz_Request::param('idMax', 0);
|
||||
FreshRSS_Context::$search = new FreshRSS_Search(Minz_Request::param('search', ''));
|
||||
FreshRSS_Context::$search = new FreshRSS_BooleanSearch(Minz_Request::param('search', ''));
|
||||
|
||||
FreshRSS_Context::$state = Minz_Request::param('state', 0);
|
||||
if (FreshRSS_Context::isStateEnabled(FreshRSS_Entry::STATE_FAVORITE)) {
|
||||
|
||||
Reference in New Issue
Block a user