Portions created by the Initial Developer are Copyright (C) 2008-2015 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (permission_exists('contact_time_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get the http values and set as variables if (count($_GET) > 0) { $contact_time_uuid = check_str($_GET["id"]); $contact_uuid = check_str($_GET["contact_uuid"]); } //delete the record if (strlen($contact_time_uuid) > 0) { $sql = "delete from v_contact_times "; $sql .= "where domain_uuid = '".$domain_uuid."' "; $sql .= "and contact_uuid = '".$contact_uuid."' "; $sql .= "and contact_time_uuid = '".$contact_time_uuid."' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); unset($sql); } //redirect the browser messages::add($text['message-delete']); header("Location: contact_edit.php?id=".$contact_uuid); return; ?>