Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ include "root.php"; require_once "includes/require.php"; require_once "includes/checkauth.php"; require_once "config.php"; if (permission_exists('content_delete')) { //access granted } else { echo "access denied"; exit; } if (count($_GET)>0) { $rss_uuid = check_str($_GET["rss_uuid"]); $rss_sub_uuid = check_str($_GET["rss_sub_uuid"]); //mark the the item as deleted and who deleted it $sql = "update v_rss_sub set "; $sql .= "rss_sub_del_date = now(), "; $sql .= "rss_sub_del_user = '".$_SESSION["username"]."' "; $sql .= "where domain_uuid = '$domain_uuid' "; $sql .= "and rss_sub_uuid = '$rss_sub_uuid' "; $db->exec(check_sql($sql)); unset($sql); require_once "includes/header.php"; echo "\n"; echo "
"; echo "Delete Completed"; echo "
"; require_once "includes/footer.php"; return; } ?>