mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
Strip Out http and https in domains, vendors and passwords
This commit is contained in:
@@ -6,7 +6,7 @@ $contact_name = sanitizeInput($_POST['contact_name']);
|
||||
$phone = preg_replace("/[^0-9]/", '', $_POST['phone']);
|
||||
$extension = preg_replace("/[^0-9]/", '', $_POST['extension']);
|
||||
$email = sanitizeInput($_POST['email']);
|
||||
$website = sanitizeInput($_POST['website']);
|
||||
$website = preg_replace("(^https?://)", "", sanitizeInput($_POST['website']));
|
||||
$hours = sanitizeInput($_POST['hours']);
|
||||
$sla = sanitizeInput($_POST['sla']);
|
||||
$code = sanitizeInput($_POST['code']);
|
||||
|
||||
Reference in New Issue
Block a user