mirror of
https://github.com/itflow-org/itflow
synced 2026-03-11 08:14:52 +00:00
Update var names
This commit is contained in:
12
agent/post/recurring_ticket_model.php
Normal file
12
agent/post/recurring_ticket_model.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
||||
|
||||
$subject = sanitizeInput($_POST['subject']);
|
||||
$priority = sanitizeInput($_POST['priority']);
|
||||
$details = mysqli_real_escape_string($mysqli, $_POST['details']);
|
||||
$frequency = sanitizeInput($_POST['frequency']);
|
||||
$billable = intval($_POST['billable'] ?? 0);
|
||||
$asset_id = intval($_POST['asset_id'] ?? 0);
|
||||
$contact_id = intval($_POST['contact_id'] ?? 0);
|
||||
$assigned_to = intval($_POST['assigned_to'] ?? 0);
|
||||
$category_id = intval($_POST['category_id'] ?? 0);
|
||||
Reference in New Issue
Block a user