diff options
| author | 2015-02-21 09:08:06 -0500 | |
|---|---|---|
| committer | 2015-02-21 09:46:21 -0500 | |
| commit | 115612959302fc51c4720b7a954bf8cbe1b14f3b (patch) | |
| tree | 5001a7a06b7d52dfe640eece15edcd16c0bbd56b /app/Models/Context.php | |
| parent | f5028d30d047ae50ac2d89a9a66266de086ac718 (diff) | |
Use the search object to get values in the search
It is now possible to combine multiple keywords to do a search. The separation of concern is better now since the search extraction is not done in the DAO anymore.
At the moment, a multiple keyword search is stored as this. It could be nice to have it rendered differently in the search page to make it more readable.
At the moment, there is a problem with search enclosed by ". Same search works well when enclosed by '.
Diffstat (limited to 'app/Models/Context.php')
| -rw-r--r-- | app/Models/Context.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php index f00bb1e97..dbdbfaa69 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -30,7 +30,7 @@ class FreshRSS_Context { public static $state = 0; public static $order = 'DESC'; public static $number = 0; - public static $search = ''; + public static $search; public static $first_id = ''; public static $next_id = ''; public static $id_max = ''; |
