mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Addressed additional unsupported array spread operation
This commit is contained in:
@ -29,10 +29,9 @@ class TagController extends Controller
|
|||||||
$tags = $this->tagRepo
|
$tags = $this->tagRepo
|
||||||
->queryWithTotals($listOptions, $nameFilter)
|
->queryWithTotals($listOptions, $nameFilter)
|
||||||
->paginate(50)
|
->paginate(50)
|
||||||
->appends(array_filter([
|
->appends(array_filter(array_merge($listOptions->getPaginationAppends(), [
|
||||||
...$listOptions->getPaginationAppends(),
|
|
||||||
'name' => $nameFilter,
|
'name' => $nameFilter,
|
||||||
]));
|
])));
|
||||||
|
|
||||||
$this->setPageTitle(trans('entities.tags'));
|
$this->setPageTitle(trans('entities.tags'));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user