Add auto close ticket feature

This commit is contained in:
Marcus Hill
2023-05-01 02:02:45 +01:00
parent 8cf1bd8911
commit dc2293c8dd
3 changed files with 81 additions and 2 deletions

View File

@@ -300,6 +300,7 @@ if (isset($_GET['ticket_id'])) {
<option <?php if ($ticket_status == 'Open') { echo "selected"; } ?> >Open</option>
<option <?php if ($ticket_status == 'Working') { echo "selected"; } ?> >Working</option>
<option <?php if ($ticket_status == 'On Hold') { echo "selected"; } ?> >On Hold</option>
<option <?php if ($ticket_status == 'Auto Close') { echo "selected"; } ?> >Auto Close</option>
<option <?php if ($ticket_status == 'Closed') { echo "selected"; } ?> >Closed</option>
</select>
</div>