fix: [logs:admin_index] Removed bad usage of PHP's compact function

Fix #6543
pull/6541/head
mokaddem 2020-11-05 09:57:17 +01:00
parent 495d66c593
commit db6d159f98
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class LogsController extends AppController
'request' => $this->request,
'named_params' => $this->params['named'],
'paramArray' => $paramArray,
'ordered_url_params' => compact($paramArray)
'ordered_url_params' => func_get_args()
);
$exception = false;
$filters = $this->_harvestParameters($filterData, $exception);