mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Recurring tickets
- Allow forcing recurring tickets to run (e.g. cron broke, or you want to do a task early) - Use new permissions system for recurring UI - Bugfix: Ticket billable status wasn't saving/displaying on the edit modal
This commit is contained in:
@@ -5,7 +5,7 @@ $subject = sanitizeInput($_POST['subject']);
|
||||
$priority = sanitizeInput($_POST['priority']);
|
||||
$details = mysqli_real_escape_string($mysqli, $_POST['details']);
|
||||
$frequency = sanitizeInput($_POST['frequency']);
|
||||
$billable = intval($_POST['billable']);
|
||||
$billable = intval($_POST['billable'] ?? 0);
|
||||
|
||||
$asset_id = "0";
|
||||
if (isset($_POST['asset'])) {
|
||||
|
||||
Reference in New Issue
Block a user