diff options
| author | 2018-03-14 17:20:41 +0100 | |
|---|---|---|
| committer | 2018-03-14 17:20:41 +0100 | |
| commit | 84d891f8cf43e4bb097a8b05a85dfeb4c48bd215 (patch) | |
| tree | ea2ebffb204c3c31a3cb77bd93351d16fcb5a473 /app/Controllers/indexController.php | |
| parent | 881ed44005ec6212f21c0973b772a1652ef1b42a (diff) | |
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
Diffstat (limited to 'app/Controllers/indexController.php')
| -rwxr-xr-x | app/Controllers/indexController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php index e3dbd4664..8567b4657 100755 --- a/app/Controllers/indexController.php +++ b/app/Controllers/indexController.php @@ -182,7 +182,7 @@ class FreshRSS_index_Controller extends Minz_ActionController { FreshRSS_Context::$state |= FreshRSS_Entry::STATE_READ; } - FreshRSS_Context::$search = new FreshRSS_Search(Minz_Request::param('search', '')); + FreshRSS_Context::$search = new FreshRSS_BooleanSearch(Minz_Request::param('search', '')); FreshRSS_Context::$order = Minz_Request::param( 'order', FreshRSS_Context::$user_conf->sort_order ); |
