mirror of https://github.com/itflow-org/itflow
Merge pull request #633 from wrongecho/fix-parse-error
Fix post.php parse error due to new sanitizeinput function
This commit is contained in:
commit
31d5ae7b75
4
post.php
4
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']);
|
||||
|
|
|
|||
Loading…
Reference in New Issue