mirror of
https://github.com/itflow-org/itflow
synced 2026-08-11 10:07:15 +00:00
Update skipped function renames in anything named vendor
This commit is contained in:
@@ -3,11 +3,11 @@ defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
||||
|
||||
$client_id = intval($_POST['client_id']);
|
||||
$vendor_id = intval($_POST['vendor_id']);
|
||||
$name = sanitizeInput($_POST['name']);
|
||||
$title = sanitizeInput($_POST['title']);
|
||||
$department = sanitizeInput($_POST['department']);
|
||||
$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 = sanitizeInput($_POST['email']);
|
||||
$notes = sanitizeInput($_POST['notes']);
|
||||
$email = escapeSql($_POST['email']);
|
||||
$notes = escapeSql($_POST['notes']);
|
||||
|
||||
Reference in New Issue
Block a user