Created
August 22, 2017 13:10
-
-
Save rr-it/614a8f7752703ea2db2875aebd506f41 to your computer and use it in GitHub Desktop.
TYPO3 Powermail Issue on textarea with active confirmation page
This file contains 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> | |
+ <f:form.textarea style="visibility:hidden;position:absolute;" property="{answer.field.marker}" value="{answer.value}" /> | |
+ </f:then> | |
+ <f:else> | |
+ <f:form.hidden property="{answer.field.marker}" value="{answer.value}" /> | |
+ </f:else> | |
+ </f:if> | |
</f:else> | |
</f:if> | |
</f:for> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That is an issue of ext:sourceopt - not of powermail.
See in2code-de/powermail#148