Update constructs to not have parenthesis.

This commit is contained in:
o-psi
2023-10-20 15:25:52 -05:00
parent 56b91f3278
commit 53c11edc8c
209 changed files with 1591 additions and 800 deletions

View File

@@ -920,7 +920,8 @@ if (isset($_POST['add_scheduled_ticket'])) {
validateTechRole();
require_once('post/scheduled_ticket_model.php');
require_once 'post/scheduled_ticket_model.php';
$start_date = sanitizeInput($_POST['start_date']);
// If no contact is selected automatically choose the primary contact for the client
@@ -948,7 +949,8 @@ if (isset($_POST['edit_scheduled_ticket'])) {
validateTechRole();
require_once('post/scheduled_ticket_model.php');
require_once 'post/scheduled_ticket_model.php';
$scheduled_ticket_id = intval($_POST['scheduled_ticket_id']);
$next_run_date = sanitizeInput($_POST['next_date']);