diff --git a/wp-admin/admin-ajax.php b/wp-admin/admin-ajax.php index 32402c1fc..6c7d90722 100644 --- a/wp-admin/admin-ajax.php +++ b/wp-admin/admin-ajax.php @@ -343,6 +343,7 @@ case 'add-cat' : // From Manage->Categories $x = new WP_Ajax_Response( array( 'what' => 'cat', 'id' => $cat->term_id, + 'position' => -1, 'data' => _cat_row( $cat, $level, $cat_full_name ), 'supplemental' => array('name' => $cat_full_name, 'show-link' => sprintf(__( 'Category %s added' ), "cat-$cat->term_id", $cat_full_name)) ) ); @@ -378,6 +379,7 @@ case 'add-link-cat' : // From Blogroll -> Categories $x = new WP_Ajax_Response( array( 'what' => 'link-cat', 'id' => $term_id, + 'position' => -1, 'data' => $link_cat ) ); $x->send(); diff --git a/wp-admin/categories.php b/wp-admin/categories.php index 6f844fb53..91c3be93b 100644 --- a/wp-admin/categories.php +++ b/wp-admin/categories.php @@ -159,6 +159,10 @@ endif; ?>
+
+ +
+
@@ -236,21 +240,66 @@ if ( $page_links )
+
+
+
+
+ + + + +
+

+
+
+ + + +
+ + +

- -
+
+ + +

+
+ +
+ + 0, 'name' => 'category_parent', 'orderby' => 'name', 'selected' => $category->parent, 'hierarchical' => true, 'show_option_none' => __('None'))); ?> +

+
+ +
+ + +

+
+ +

+ +
+ + + +

Note:
Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s.'), apply_filters('the_category', get_catname(get_option('default_category')))) ?>

category to tag converter.'), 'admin.php?import=wp-cat2tag') ?>

- +
+
- - +
+

-

+
+ +
+
@@ -179,17 +182,56 @@ if ( $page_links )

+
+
+
+
+ + + +
+

+
+
+ + + +
+ +
- -
+
+ + +

+
+ +
+ + +
+ +

+ + +
+ + + +

Note:
Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s.'), get_term_field('name', get_option('default_link_category'), 'link_category')) ?>

- +
+
+ +
+
+
+ + - - - diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index 598f67744..18ed20887 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -1202,7 +1202,8 @@ table.form-table td .updated { font-weight: bold; } -.form-field input { +.form-field input, +.form-field textarea { border-style: solid; border-width: 1px; width: 95%;