From 87c5d9bfec1234e3b38aacc6217b15becb4e8b3e Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 22 Apr 2006 00:31:27 +0000 Subject: [PATCH] Remove this artificial limit, it messes up posting with seldom-used categories git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3748 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/admin-functions.php b/wp-admin/admin-functions.php index 6afef35b38..a4d0a01d9b 100644 --- a/wp-admin/admin-functions.php +++ b/wp-admin/admin-functions.php @@ -523,7 +523,7 @@ function checked($checked, $current) { function return_categories_list($parent = 0) { global $wpdb; - return $wpdb->get_col("SELECT cat_ID FROM $wpdb->categories WHERE category_parent = $parent ORDER BY category_count DESC LIMIT 100"); + return $wpdb->get_col("SELECT cat_ID FROM $wpdb->categories WHERE category_parent = $parent ORDER BY category_count DESC"); } function sort_cats($cat1, $cat2) {