You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in DownloadController->listAction() $downloadUrl = null; $this->view->assign('downloadUrl' , $downloadUrl);
In fact, this could be removed, it is always empty...
In AbstractController->initializeAction()
These keys are not set in the settings-array
if (!isset($this->settings['controllers'])) {
$this->settings['controllers'] = [];
}
$this->controllerSettings = $this->settings['controllers'][$this->request->getControllerName()];
if (!isset($this->settings['actions'])) {
$this->controllerSettings['actions'] = [];
}
$this->actionSettings = $this->controllerSettings['actions'][$this->request->getControllerActionName()];
The text was updated successfully, but these errors were encountered:
PHP 8+ does not like undefined variables ;)
in DownloadController->listAction()
$downloadUrl = null; $this->view->assign('downloadUrl' , $downloadUrl);
In fact, this could be removed, it is always empty...
In AbstractController->initializeAction()
These keys are not set in the settings-array
The text was updated successfully, but these errors were encountered: