Skip to content

Commit

Permalink
fix: CD-326299 Fixed an issue where the backend caches wouldn't be li…
Browse files Browse the repository at this point in the history
…sted in the controller view.
  • Loading branch information
sourcesoldier committed Aug 22, 2024
1 parent da1791c commit a76f09a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Controller/BackendModuleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function indexAction(): ResponseInterface
{
$moduleTemplate = $this->moduleTemplateFactory->create($this->request);

$this->view->assignMultiple([
$moduleTemplate->assignMultiple([
'cacheConfigurations' => $this->buildCacheConfigurationArray(),
'action_confirm_flush_message' => $this->languageService->sL(
'LLL:EXT:cachemgm/Resources/Private/BackendModule/Language/locallang.xlf:bemodule.action_confirm_flush'
Expand Down Expand Up @@ -106,7 +106,7 @@ public function detailAction(): ResponseInterface
$fileBackend = $this->getFileBackendInfo($backend);
$cacheCount = $this->getCacheCount($backend);

$this->view->assignMultiple(
$moduleTemplate->assignMultiple(
[
'cacheId' => $cacheId,
'cacheInformation' => [
Expand Down

0 comments on commit a76f09a

Please sign in to comment.