From 455ede6f8ad106cf913f5d075a068d97818fc4ba Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Sun, 26 Feb 2023 11:49:57 +0000 Subject: [PATCH] Fix parse error due to new sanitizeinput function --- post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post.php b/post.php index 86274ed7..046053ad 100644 --- a/post.php +++ b/post.php @@ -2282,8 +2282,8 @@ if(isset($_POST['add_vendor_from_template'])){ $name = sanitizeInput($row['vendor_name']); $description = sanitizeInput($row['vendor_description']); - $account_number = sanitizeInput(,$row['vendor_account_number']); - $contact_name = sanitizeInput(,$row['vendor_contact_name']); + $account_number = sanitizeInput($row['vendor_account_number']); + $contact_name = sanitizeInput($row['vendor_contact_name']); $phone = preg_replace("/[^0-9]/", '',$row['vendor_phone']); $extension = preg_replace("/[^0-9]/", '',$row['vendor_extension']); $email = sanitizeInput($row['vendor_email']);