mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-11 01:15:26 +00:00
Fixed search bug
This commit is contained in:
parent
21e7ccef3d
commit
6ad8aabb83
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ class EntryController extends Controller
|
|||
{
|
||||
$repository = $this->get('wallabag_core.entry_repository');
|
||||
$searchTerm = (isset($request->get('search_entry')['term']) ? $request->get('search_entry')['term'] : '');
|
||||
$currentRoute = (!is_null($request->get('currentRoute')) ? $request->get('currentRoute') : '');
|
||||
$currentRoute = (!is_null($request->query->get('currentRoute')) ? $request->query->get('currentRoute') : '');
|
||||
|
||||
switch ($type) {
|
||||
case 'search':
|
||||
|
|
Loading…
Reference in a new issue