mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
API - New tickets
- Allow creating tickets for no client / no contact - Set URL view key - Fix line break after ticket details that causes odd email formatting
This commit is contained in:
@@ -29,11 +29,11 @@ if (isset($_POST['ticket_priority'])) {
|
||||
|
||||
|
||||
if (isset($_POST['ticket_details'])) {
|
||||
$details = sanitizeInput($_POST['ticket_details']);
|
||||
$details = sanitizeInput($_POST['ticket_details']) . "<br>";
|
||||
} elseif ($ticket_row) {
|
||||
$details = $ticket_row['ticket_details'];
|
||||
} else {
|
||||
$details = '< blank >';
|
||||
$details = '< blank ><br>';
|
||||
}
|
||||
|
||||
if (isset($_POST['ticket_vendor_id'])) {
|
||||
|
||||
Reference in New Issue
Block a user