Skip to content

Commit

Permalink
Fix Contact Bulk Actions, removed required fields from Bulk Mail sinc…
Browse files Browse the repository at this point in the history
…e its all under 1 big form you cant have required fields
  • Loading branch information
johnnyq committed Aug 27, 2024
1 parent 27a9697 commit 3eb6ee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client_contact_bulk_email_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down

0 comments on commit 3eb6ee5

Please sign in to comment.