Portions created by the Initial Developer are Copyright (C) 2008-2019 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //includes include "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; require_once "resources/functions/save_phrases_xml.php"; //check permissions if (permission_exists('phrase_delete')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get values $phrase_detail_uuid = check_str($_GET["pdid"]); $phrase_uuid = check_str($_GET["pid"]); $phrase_language = check_str($_GET["lang"]); //delete the detail entry if ($phrase_detail_uuid != '' && $phrase_uuid != '') { $sql = "delete from v_phrase_details "; $sql .= " where phrase_detail_uuid = '".$phrase_detail_uuid."'"; $sql .= " and phrase_uuid = '".$phrase_uuid."' "; $sql .= " and domain_uuid = '".$domain_uuid."' "; $db->exec(check_sql($sql)); unset($sql); } //save the xml to the file system if the phrase directory is set save_phrases_xml(); //clear the cache $cache = new cache; $cache->delete("languages:".$phrase_language); //redirect the user message::add($text['message-delete']); header('Location: phrase_edit.php?id='.$phrase_uuid); ?>