Portions created by the Initial Developer are Copyright (C) 2008-2018 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (permission_exists('voicemail_option_edit')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //set the http values as variables if (count($_GET)>0) { $voicemail_option_uuid = check_str($_GET["id"]); $voicemail_uuid = check_str($_GET["voicemail_uuid"]); } //delete the voicemail option if (strlen($voicemail_option_uuid) > 0) { $sql = "delete from v_voicemail_options "; $sql .= "where domain_uuid = '".$domain_uuid."' "; $sql .= "and voicemail_option_uuid = '".$voicemail_option_uuid."' "; $db->exec(check_sql($sql)); unset($sql); } //redirect the user message::add($text['message-delete']); header('Location: voicemail_edit.php?id='.$voicemail_uuid); ?>