Fix Contact Bulk Actions, removed required fields from Bulk Mail since its all under 1 big form you cant have required fields

This commit is contained in:
johnnyq 2024-08-27 12:05:45 -04:00
parent 27a9697542
commit 3eb6ee57fb
1 changed files with 2 additions and 2 deletions

View File

@ -25,11 +25,11 @@
<div class="form-group">
<input type="text" class="form-control" name="mail_from_name" placeholder="From Name"
value="<?php echo nullable_htmlentities($config_mail_from_name); ?>" required>
value="<?php echo nullable_htmlentities($config_mail_from_name); ?>">
</div>
<div class="form-group">
<input type="text" class="form-control" name="subject" placeholder="Subject" required>
<input type="text" class="form-control" name="subject" placeholder="Subject">
</div>
<div class="form-group">