diff --git a/typo3/sysext/form/Classes/Domain/Finishers/ConfirmationFinisher.php b/typo3/sysext/form/Classes/Domain/Finishers/ConfirmationFinisher.php index fe820101045a..0883007383c8 100644 --- a/typo3/sysext/form/Classes/Domain/Finishers/ConfirmationFinisher.php +++ b/typo3/sysext/form/Classes/Domain/Finishers/ConfirmationFinisher.php @@ -119,7 +119,10 @@ protected function executeInternal() $this->finisherContext->getFormRuntime() ); - $standaloneView->assign('message', $message); + $standaloneView->assignMultiple([ + 'message' => $message, + 'isPreparedMessage' => !empty($contentElementUid), + ]); return $standaloneView->render(); } diff --git a/typo3/sysext/form/Resources/Private/Frontend/Templates/Finishers/Confirmation/Confirmation.html b/typo3/sysext/form/Resources/Private/Frontend/Templates/Finishers/Confirmation/Confirmation.html index bc13d3644ed0..0958dcd578c3 100644 --- a/typo3/sysext/form/Resources/Private/Frontend/Templates/Finishers/Confirmation/Confirmation.html +++ b/typo3/sysext/form/Resources/Private/Frontend/Templates/Finishers/Confirmation/Confirmation.html @@ -1,3 +1,10 @@ -{message} + + + {message -> f:format.raw()} + + + {message} + +