Update for long tickets

This commit is contained in:
o-psi
2024-02-10 02:42:37 +00:00
parent 5ac03e7086
commit 12f6f86581
2 changed files with 3 additions and 2 deletions

View File

@@ -1513,7 +1513,8 @@ if (isset($_POST['edit_ticket_schedule'])) {
$user_name = sanitizeInput($row['user_name']);
$user_email = sanitizeInput($row['user_email']);
$cal_subject = $ticket_number . ": " . $client_name . " - " . $ticket_subject;
$cal_description = $ticket_details . " - " . $full_ticket_url;
$ticket_details_truncated = substr($ticket_details, 0, 100);
$cal_description = $ticket_details_truncated . " - " . $full_ticket_url;
$cal_location = sanitizeInput($row["location_address"]);
$email_datetime = date('l, F j, Y \a\t g:ia', strtotime($schedule));