Update Functions in ticket_edit_vendor and document link vendor and deleted legacy code unused that had legacy functions tied to them

This commit is contained in:
johnnyq
2026-07-23 13:17:41 -04:00
parent 8f43b92496
commit 5f26d75e18
5 changed files with 4 additions and 758 deletions

View File

@@ -1,13 +0,0 @@
<?php
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
$client_id = intval($_POST['client_id']);
$vendor_id = intval($_POST['vendor_id']);
$name = escapeSql($_POST['name']);
$title = escapeSql($_POST['title']);
$department = escapeSql($_POST['department']);
$phone = preg_replace("/[^0-9]/", '', $_POST['phone']);
$extension = preg_replace("/[^0-9]/", '', $_POST['extension']);
$mobile = preg_replace("/[^0-9]/", '', $_POST['mobile']);
$email = escapeSql($_POST['email']);
$notes = escapeSql($_POST['notes']);