summaryrefslogtreecommitdiffstats
path: root/wp-admin/edit-category-form.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-20 15:57:02 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-20 15:57:02 +0000
commitd048d2102a66716887bd31c20e391de2d2069601 (patch)
treed3e2d3c248b0c208555883eff20b27d9b4d775a9 /wp-admin/edit-category-form.php
parentebb00419bd268fe7f9551ebe59b91dfd88fb0003 (diff)
downloadwordpress-mu-d048d2102a66716887bd31c20e391de2d2069601.tar.gz
wordpress-mu-d048d2102a66716887bd31c20e391de2d2069601.tar.xz
wordpress-mu-d048d2102a66716887bd31c20e391de2d2069601.zip
Order categories in the drop down by name, not ID (fixes #190)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@893 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/edit-category-form.php')
-rw-r--r--wp-admin/edit-category-form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/edit-category-form.php b/wp-admin/edit-category-form.php
index a0c9f38..36505cf 100644
--- a/wp-admin/edit-category-form.php
+++ b/wp-admin/edit-category-form.php
@@ -31,7 +31,7 @@ if ( ! empty($cat_ID) ) {
<tr>
<th scope="row" valign="top"><label for="category_parent"><?php _e('Category parent:') ?></label></th>
<td>
- <?php wp_dropdown_categories('hide_empty=0&name=category_parent&selected=' . $category->category_parent . '&hierarchical=1&show_option_none=' . __('None')); ?>
+ <?php wp_dropdown_categories('hide_empty=0&name=category_parent&selected=&orderby=name' . $category->category_parent . '&hierarchical=1&show_option_none=' . __('None')); ?>
</td>
</tr>
<tr>