Skip to content

Commit

Permalink
[BUGFIX] Use proper assignment for variable to view
Browse files Browse the repository at this point in the history
  • Loading branch information
featdd committed Jun 22, 2023
1 parent e91f31d commit 33317f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/Backend/StatisticController.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ protected function statisticActionMethod(string $entityName, Configuration $conf
return $this->{$repositoryName}->findAllByConfiguration($configuration);
}

$this->moduleTemplate->assign('date', $date);
$this->view->assign('date', $date);

return $this->{$repositoryName}->findByMonth($configuration, $date);
}
Expand Down

0 comments on commit 33317f0

Please sign in to comment.