mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Ticket scheduling
- Prevent scheduling dates in the past (also for API keys expiry date) - Correct the ticket URL in the agent email - Update the onsite value in the database when scheduling a ticket - Reword the internal note to include a user friendly time and whether the ticket is onsite/remote
This commit is contained in:
@@ -47,7 +47,7 @@ $key = randomString(156);
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text"><i class="fa fa-fw fa-calendar"></i></span>
|
||||
</div>
|
||||
<input type="date" class="form-control" name="expire" max="2999-12-31" required>
|
||||
<input type="date" class="form-control" name="expire" min="<?php echo date('Y-m-d')?>" max="2999-12-31" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user