summaryrefslogtreecommitdiffstats
path: root/wp-admin/edit-category-form.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 18:52:20 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 18:52:20 +0000
commitea9b1bc498ba77f55e65266d9263e341bcc0e167 (patch)
tree8b29b12b738c3688e882f19ddbdec9a3e5c67154 /wp-admin/edit-category-form.php
parent1a8522093c85332a60f61bea05eeae0bf82eb574 (diff)
downloadwordpress-mu-ea9b1bc498ba77f55e65266d9263e341bcc0e167.tar.gz
wordpress-mu-ea9b1bc498ba77f55e65266d9263e341bcc0e167.tar.xz
wordpress-mu-ea9b1bc498ba77f55e65266d9263e341bcc0e167.zip
Removed autocomplete_css() because it possibly conflicts with advanced editor stuff:
http://trac.mu.wordpress.org/ticket/213 http://trac.mu.wordpress.org/ticket/176 http://trac.mu.wordpress.org/ticket/217 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@860 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/edit-category-form.php')
-rw-r--r--wp-admin/edit-category-form.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/wp-admin/edit-category-form.php b/wp-admin/edit-category-form.php
index 2c0e036..a0c9f38 100644
--- a/wp-admin/edit-category-form.php
+++ b/wp-admin/edit-category-form.php
@@ -23,11 +23,10 @@ if ( ! empty($cat_ID) ) {
<input type="hidden" name="action" value="<?php echo $action ?>" />
<input type="hidden" name="cat_ID" value="<?php echo $category->cat_ID ?>" />
<?php wp_nonce_field($nonce_action); ?>
-<?php autocomplete_css(); ?>
<table class="editform" width="100%" cellspacing="2" cellpadding="5">
<tr>
<th width="33%" scope="row" valign="top"><label for="cat_name"><?php _e('Category name:') ?></label></th>
- <td width="67%"><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->cat_name); ?>" size="40" /><div id="searchresults" class="autocomplete"></div></td>
+ <td width="67%"><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->cat_name); ?>" size="40" /></td>
</tr>
<tr>
<th scope="row" valign="top"><label for="category_parent"><?php _e('Category parent:') ?></label></th>
@@ -40,7 +39,6 @@ if ( ! empty($cat_ID) ) {
<td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->category_description); ?></textarea></td>
</tr>
</table>
-<?php autocomplete_textbox( "wpmu-edit.php?action=searchcategories&search=", "cat_name", "searchresults" ); ?>
<p class="submit"><input type="submit" name="submit" value="<?php echo $submit_text ?>" /></p>
<?php do_action('edit_category_form', $category); ?>
</form>