Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/wp-admin/link-category.php

    r7537 r8392  
    2929
    3030    $cat_name = get_term_field('name', $cat_ID, 'link_category');
     31    $default_cat_id = get_option('default_link_category');
    3132
    3233    // Don't delete the default cats.
    33     if ( $cat_ID == get_option('default_link_category') )
     34    if ( $cat_ID == $default_cat_id )
    3435        wp_die(sprintf(__("Can&#8217;t delete the <strong>%s</strong> category: this is the default one"), $cat_name));
    3536
    36     wp_delete_term($cat_ID, 'link_category');
     37    wp_delete_term($cat_ID, 'link_category', array('default' => $default_cat_id));
    3738
    3839    $location = 'edit-link-categories.php';
     
    7475    }
    7576
    76     if ( wp_update_term($cat_ID, 'link_category', $_POST) )
     77    $update =  wp_update_term($cat_ID, 'link_category', $_POST);
     78
     79    if ( $update && !is_wp_error($update) )
    7780        $location = add_query_arg('message', 3, $location);
    7881    else
Note: See TracChangeset for help on using the changeset viewer.