Changes from trunk/wp-admin/edit-link-categories.php at r7883 to branches/2.6/wp-admin/edit-link-categories.php at r8389
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/wp-admin/edit-link-categories.php
r7883 r8389 11 11 foreach( (array) $_GET['delete'] as $cat_ID ) { 12 12 $cat_name = get_term_field('name', $cat_ID, 'link_category'); 13 13 $default_cat_id = get_option('default_link_category'); 14 14 15 // Don't delete the default cats. 15 if ( $cat_ID == get_option('default_link_category'))16 if ( $cat_ID == $default_cat_id ) 16 17 wp_die(sprintf(__("Can’t delete the <strong>%s</strong> category: this is the default one"), $cat_name)); 17 18 18 wp_delete_term($cat_ID, 'link_category' );19 wp_delete_term($cat_ID, 'link_category', array('default' => $default_cat_id)); 19 20 } 20 21
Note: See TracChangeset
for help on using the changeset viewer.