%s category: this is the default one"), $cat_name)); wp_delete_term($cat_ID, 'link_category'); wp_redirect('edit-link-categories.php?message=2'); exit; break; case 'edit': $title = __('Categories'); $parent_file = 'link-manager.php'; $submenu_file = 'edit-link-categories.php'; require_once ('admin-header.php'); $cat_ID = (int) $_GET['cat_ID']; $category = get_term_to_edit($cat_ID, 'link_category'); include('edit-link-category-form.php'); include('admin-footer.php'); exit; break; case 'editedcat': $cat_ID = (int) $_POST['cat_ID']; check_admin_referer('update-link-category_' . $cat_ID); if ( !current_user_can('manage_categories') ) wp_die(__('Cheatin’ uh?')); if ( wp_update_term($cat_ID, 'link_category', $_POST) ) wp_redirect('edit-link-categories.php?message=3'); else wp_redirect('edit-link-categories.php?message=5'); exit; break; } ?>