Skip to content

Commit

Permalink
fix invalid html
Browse files Browse the repository at this point in the history
within a textfield html enties must be encoded
  • Loading branch information
keywan-ghadami-oxid authored and Sieg committed Nov 26, 2021
1 parent 188c8f2 commit 7afe52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Application/views/admin/tpl/ddoewysiwyg.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div class="ddoe-wysiwyg" id="ddoew">
<div class="ddoe-wysiwyg-editor">
<textarea [{if $blTextEditorDisabled }]disabled [{/if}]id="editor_[{$sEditorField}]" name="[{$sEditorField}]" style="width: [{if $iEditorWidth}][{$iEditorWidth}][{else}]100%[{/if}]; height: [{if $iEditorheight}][{$iEditorheight}][{else}]300px[{/if}];">[{$sEditorValue}]</textarea>
<textarea [{if $blTextEditorDisabled }]disabled [{/if}]id="editor_[{$sEditorField}]" name="[{$sEditorField}]" style="width: [{if $iEditorWidth}][{$iEditorWidth}][{else}]100%[{/if}]; height: [{if $iEditorheight}][{$iEditorheight}][{else}]300px[{/if}];">[{$sEditorValue|escape:"htmlall":"UTF-8"}]}]</textarea>
</div>
</div>

Expand Down

0 comments on commit 7afe52b

Please sign in to comment.