This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Files excluded from git packages | |
| .githooks/ export-ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| identifier: formWithDynRecipients | |
| label: 'Form with dynamic recipients' | |
| type: Form | |
| prototypeName: standard | |
| renderingOptions: | |
| submitButtonLabel: Submit | |
| finishers: | |
| - | |
| identifier: EmailToReceiver | |
| options: &emailToReceiverOptions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ru a/Classes/Domain/Repository/MailRepository.php b/Classes/Domain/Repository/MailRepository.php | |
| --- a/Classes/Domain/Repository/MailRepository.php 2017-08-22 15:27:42.155674340 +0200 | |
| +++ b/Classes/Domain/Repository/MailRepository.php 2017-08-22 14:52:23.296258864 +0200 | |
| @@ -381,7 +381,7 @@ | |
| * @param bool $htmlSpecialChars | |
| * @return array | |
| */ | |
| - public function getVariablesWithMarkersFromMail(Mail $mail, $htmlSpecialChars = false) | |
| + public function getVariablesWithMarkersFromMail(Mail $mail, $htmlSpecialChars = false, $nl2br = false) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ru a/Resources/Private/Templates/Form/Confirmation.html b/Resources/Private/Templates/Form/Confirmation.html | |
| --- a/Resources/Private/Templates/Form/Confirmation.html 2017-08-22 12:03:56.823729265 +0200 | |
| +++ b/Resources/Private/Templates/Form/Confirmation.html 2017-08-22 12:23:34.000000000 +0200 | |
| @@ -68,7 +68,14 @@ | |
| </f:for> | |
| </f:then> | |
| <f:else> | |
| - <f:form.hidden property="{answer.field.marker}" value="{answer.value}" /> | |
| + <f:if condition="{answer.field.type} == 'textarea'"> | |
| + <f:then> |