function deleteRSS($rid)
{
    global $cfg;
    AuditAction($cfg["constants"]["admin"], _DELETE . " RSS: " . getRSS($rid));
    deleteOldRSS($rid);
    header("location: admin.php?op=editRSS");
}
/**
 * deleteRSS
 */
function admin_deleteRSS()
{
    global $cfg;
    $rid = tfb_getRequestVar('rid');
    AuditAction($cfg["constants"]["admin"], $cfg['_DELETE'] . " RSS: " . getRSS($rid));
    deleteOldRSS($rid);
    @header("location: admin.php?op=editRSS");
    exit;
}