mirror of
https://github.com/flarum/core.git
synced 2025-02-25 11:43:19 +01:00
Make sure sort key exists
This commit is contained in:
parent
f07ab4633b
commit
62a01c69a9
@ -29,7 +29,7 @@ class IndexAction extends ClientAction
|
|||||||
$q = array_pull($queryParams, 'q');
|
$q = array_pull($queryParams, 'q');
|
||||||
|
|
||||||
$params = [
|
$params = [
|
||||||
'sort' => $sort ? $this->sortMap[$sort] : '',
|
'sort' => $sort && isset($this->sortMap[$sort]) ? $this->sortMap[$sort] : '',
|
||||||
'filter' => ['q' => $q]
|
'filter' => ['q' => $q]
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user