Fix checkbox for marking post body as spam (ban page)

This commit is contained in:
towards-a-new-leftypol 2023-08-08 13:05:58 -04:00
parent 208a57e009
commit 724e8f674b
1 changed files with 2 additions and 2 deletions

View File

@ -28,9 +28,9 @@
{% if post.modifiers['warning message'] %}
{{ config.mod.warning_message|sprintf(post.modifiers['warning message']) }}
{% endif %}
<input class="ban_form--content_file_chkbox" type="checkbox" name="text_is_spam" id="text_is_spam" checked>
<label class="ban_form--content_file_chkbox_lbl" for="text_is_spam">Text is also spam</label>
</div>
<input class="ban_form--content_file_chkbox" type="checkbox" name="text_is_spam" id="text_is_spam" checked>
<label class="ban_form--content_file_chkbox_lbl" for="text_is_spam">Text is also spam</label>
</div>
</div>
{% endapply %}