Skip to content

Commit 39a6614

Browse files
authored
Merge pull request #21 from breadlesscode/patch-1
fixed spans get escaped with Neos 3
2 parents 166cb5b + 4a79232 commit 39a6614

File tree

1 file changed

+6
-2
lines changed
  • Resources/Private/Templates/NodeTypes

1 file changed

+6
-2
lines changed

Resources/Private/Templates/NodeTypes/Post.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@ <h3><f:translate package="RobertLemke.Plugin.Blog">Leave a reply</f:translate></
4646
<f:render partial="FormErrors" arguments="{for: 'newComment'}" />
4747
<f:form action="create" controller="Comment" package="RobertLemke.Plugin.Blog" object="{newComment}" name="newComment" class="newcomment" id="newCommentForm">
4848
<f:form.hidden name="postNode" value="{node.path}" />
49-
<label for="comment.author"><f:translate package="RobertLemke.Plugin.Blog">Name <span class="required">*</span></f:translate></label>
49+
<label for="comment.author"><f:format.raw>
50+
<f:translate package="RobertLemke.Plugin.Blog">Name <span class="required">*</span></f:translate>
51+
</f:format.raw></label>
5052
<f:form.textfield id="comment.author" property="author" />
51-
<label for="comment.emailaddress"><f:translate package="RobertLemke.Plugin.Blog">Email <span class="required">*</span> (won't be displayed)</f:translate></label>
53+
<label for="comment.emailaddress"><f:format.raw>
54+
<f:translate package="RobertLemke.Plugin.Blog">Email <span class="required">*</span> (won't be displayed)</f:translate>
55+
</f:format.raw></label>
5256
<f:form.textfield id="comment.emailaddress" property="emailAddress" />
5357
<f:form.textarea id="comment.text" property="text" rows="10" cols="50"/>
5458
<button class="secondary button">{f:translate(value: 'Submit', package: 'Neos.Flow')}</button>

0 commit comments

Comments
 (0)