Remove 'required' attribute from wysiwyg options
authorMarcel Werk <burntime@woltlab.com>
Wed, 28 Feb 2024 16:05:34 +0000 (17:05 +0100)
committerMarcel Werk <burntime@woltlab.com>
Wed, 28 Feb 2024 16:05:34 +0000 (17:05 +0100)
The textarea is hidden. The 'required' attribute lead to the issue that the form could not be submitted in the browser.

com.woltlab.wcf/templates/messageOptionType.tpl

index 086bad30d94c5f67fa0420addc155350dcdacea3..7e5127f1162e7b3acf285eb18c79e15e0b0fdcbb 100644 (file)
@@ -1,8 +1,8 @@
-<textarea id="{$option->optionName}" name="values[{$option->optionName}]" cols="40" rows="10"{if $option->required} required{/if} class="wysiwygTextarea" data-disable-attachments="true">{$value}</textarea>
+<textarea id="{$option->optionName}" name="values[{$option->optionName}]" cols="40" rows="10" class="wysiwygTextarea" data-disable-attachments="true">{$value}</textarea>
 {include file='wysiwyg' wysiwygSelector=$option->optionName}
 
 <script data-relocate="true">
 $(function() {
        $('#{$option->optionName}').parents('dl:eq(0)').addClass('wide');
 });
-</script>
\ No newline at end of file
+</script>