Skip to content

Commit

Permalink
Merge pull request #486 from gregorybesson/develop
Browse files Browse the repository at this point in the history
fixes
  • Loading branch information
gregorybesson authored Jul 26, 2022
2 parents ed9f810 + 02f6601 commit 4049f06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Controller/Frontend/CrosswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ public function resultAction()
'statusMail' => $statusMail,
'form' => $form,
'playLimitReached' => $playLimitReached,
'entry' => $lastEntry
'entry' => $lastEntry,
'flashMessages' => $this->flashMessenger()->getMessages(),
));

return $viewModel;
Expand Down
1 change: 1 addition & 0 deletions src/Controller/Frontend/MissionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ public function resultAction()
$templatePathResolver->addPath($l[1].'custom/'.$this->game->getIdentifier());

$subViewModel->mission = $this->game;
$subViewModel->subGames = $this->getGameService()->getMissionGames($this->game, $this->user);
return $subViewModel;
}

Expand Down

0 comments on commit 4049f06

Please sign in to comment.