mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08: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');
|
||||
|
||||
$params = [
|
||||
'sort' => $sort ? $this->sortMap[$sort] : '',
|
||||
'sort' => $sort && isset($this->sortMap[$sort]) ? $this->sortMap[$sort] : '',
|
||||
'filter' => ['q' => $q]
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user