mirror of
https://github.com/itflow-org/itflow
synced 2026-03-19 04:04:51 +00:00
Fix Create Ticket not submitting due to TinyMCE not respecting required fields in the textarea form inputs, removed the required fields for now
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<textarea class="form-control tinymce" rows="5" name="details" required></textarea>
|
<textarea class="form-control tinymce" rows="5" name="details"></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if (empty($_GET['client_id'])) { ?>
|
<?php if (empty($_GET['client_id'])) { ?>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<textarea class="form-control tinymce" rows="8" name="details" required><?php echo $ticket_details; ?></textarea>
|
<textarea class="form-control tinymce" rows="8" name="details"><?php echo $ticket_details; ?></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<div class="modal-body bg-white">
|
<div class="modal-body bg-white">
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<textarea class="form-control tinymce" rows="8" name="ticket_reply"><?php echo htmlentities($ticket_reply); ?></textarea>
|
<textarea class="form-control tinymce" name="ticket_reply"><?php echo htmlentities($ticket_reply); ?></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php if (!empty($ticket_reply_time_worked)) { ?>
|
<?php if (!empty($ticket_reply_time_worked)) { ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user