Changeset 4032
- Timestamp:
- 07/23/06 18:27:00 (2 years ago)
- Files:
-
- branches/2.0/wp-admin/admin-db.php (modified) (2 diffs)
- branches/2.0/wp-admin/categories.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-admin/admin-db.php
r3802 r4032 157 157 158 158 // Don't delete the default cat. 159 if ( 1 == $cat_ID)159 if ($cat_ID == get_option('default_category')) 160 160 return 0; 161 161 … … 171 171 172 172 // TODO: Only set categories to general if they're not in another category already 173 $wpdb->query("UPDATE $wpdb->post2cat SET category_id='1' WHERE category_id='$cat_ID'"); 173 $default_cat = get_option('default_category'); 174 $wpdb->query("UPDATE $wpdb->post2cat SET category_id='$default_cat' WHERE category_id='$cat_ID'"); 174 175 175 176 wp_cache_delete($cat_ID, 'category'); branches/2.0/wp-admin/categories.php
r3937 r4032 45 45 $cat_name = get_catname($cat_ID); 46 46 47 if ( 1 == $cat_ID ) 47 // Don't delete the default cats. 48 if ( $cat_ID == get_option('default_category') ) 48 49 die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one"), $cat_name)); 49 50
