mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Fix #3361 Entry Rest controller getEntries cast tags params to string
This commit is contained in:
parent
bb86dc6486
commit
0978bd849e
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class EntryRestController extends WallabagRestController
|
|||
$order = $request->query->get('order', 'desc');
|
||||
$page = (int) $request->query->get('page', 1);
|
||||
$perPage = (int) $request->query->get('perPage', 30);
|
||||
$tags = $request->query->get('tags', '');
|
||||
$tags = is_array($request->query->get('tags')) ? '' : (string) $request->query->get('tags', '');
|
||||
$since = $request->query->get('since', 0);
|
||||
|
||||
/** @var \Pagerfanta\Pagerfanta $pager */
|
||||
|
|
Loading…
Reference in a new issue