Index: modules/node/node.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.admin.inc,v
retrieving revision 1.88
diff -u -p -r1.88 node.admin.inc
--- modules/node/node.admin.inc	13 Jan 2010 23:30:43 -0000	1.88
+++ modules/node/node.admin.inc	28 Jan 2010 12:53:27 -0000
@@ -97,15 +97,6 @@ function node_filters() {
     ) + node_type_get_names(),
   );
 
-  // The taxonomy filter
-  if ($taxonomy = module_invoke('taxonomy', 'form_all', 1)) {
-    $filters['term'] = array(
-      'title' => t('term'),
-      'options' => array(
-        '[any]' => t('any'),
-      ) + $taxonomy,
-    );
-  }
   // Language filter if there is a list of languages
   if ($languages = module_invoke('locale', 'language_list')) {
     $languages = array(LANGUAGE_NONE => t('Language neutral')) + $languages;
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.1220
diff -u -p -r1.1220 node.module
--- modules/node/node.module	25 Jan 2010 10:38:34 -0000	1.1220
+++ modules/node/node.module	28 Jan 2010 12:53:28 -0000
@@ -2506,19 +2506,6 @@ function node_form_search_form_alter(&$f
       '#maxlength' => 255,
     );
 
-    // Taxonomy box:
-    if ($taxonomy = module_invoke('taxonomy', 'form_all', 1)) {
-      $form['advanced']['term'] = array(
-        '#type' => 'select',
-        '#title' => t('Only in the term(s)'),
-        '#prefix' => '<div class="criterion">',
-        '#size' => 10,
-        '#suffix' => '</div>',
-        '#options' => $taxonomy,
-        '#multiple' => TRUE,
-      );
-    }
-
     // Node types:
     $types = array_map('check_plain', node_type_get_names());
     $form['advanced']['type'] = array(
Index: modules/taxonomy/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v
retrieving revision 1.569
diff -u -p -r1.569 taxonomy.module
--- modules/taxonomy/taxonomy.module	25 Jan 2010 17:04:03 -0000	1.569
+++ modules/taxonomy/taxonomy.module	28 Jan 2010 12:53:29 -0000
@@ -573,24 +573,6 @@ function taxonomy_terms_static_reset() {
 }
 
 /**
- * Generate a set of options for selecting a term from all vocabularies.
- */
-function taxonomy_form_all() {
-  $vocabularies = taxonomy_get_vocabularies();
-  $options = array();
-  foreach ($vocabularies as $vid => $vocabulary) {
-    $tree = taxonomy_get_tree($vid);
-    if ($tree && (count($tree) > 0)) {
-      $options[$vocabulary->name] = array();
-      foreach ($tree as $term) {
-        $options[$vocabulary->name][$term->tid] = str_repeat('-', $term->depth) . $term->name;
-      }
-    }
-  }
-  return $options;
-}
-
-/**
  * Return an array of all vocabulary objects.
  *
  * @param $type
Index: modules/taxonomy/taxonomy.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.test,v
retrieving revision 1.68
diff -u -p -r1.68 taxonomy.test
--- modules/taxonomy/taxonomy.test	10 Jan 2010 22:56:51 -0000	1.68
+++ modules/taxonomy/taxonomy.test	28 Jan 2010 12:53:29 -0000
@@ -834,131 +834,3 @@ class TaxonomyTermFieldTestCase extends 
     $this->assertText($term->name, t('Term name is displayed'));
   }
 }
-
-/**
- * Test taxonomy filters in node forms.
- */
-class TaxonomyNodeFilterTestCase extends TaxonomyWebTestCase {
-
-  public static function getInfo() {
-    return array(
-      'name'  => 'Taxonomy term filters in node forms',
-      'description'  => 'Test node form filtering by taxonomy terms.',
-      'group' => 'Taxonomy',
-    );
-  }
-
-  function setUp() {
-    parent::setUp();
-    $this->admin_user = $this->drupalCreateUser(array('access administration pages', 'access content overview', 'bypass node access', 'search content', 'use advanced search'));
-    $this->drupalLogin($this->admin_user);
-    $this->vocabulary = $this->createVocabulary();
-
-    $this->langcode = LANGUAGE_NONE;
-    $this->instance = array(
-      'field_name' => 'taxonomy_' . $this->vocabulary->machine_name,
-      'bundle' => 'article',
-      'object_type' => 'node',
-      'widget' => array(
-        'type' => 'options_select',
-      ),
-      'display' => array(
-        'full' => array(
-          'type' => 'taxonomy_term_reference_link',
-        ),
-      ),
-    );
-    field_create_instance($this->instance);
-  }
-
-  /**
-   * Test node administration page filtering by taxonomy terms.
-   */
-  function testContentAdminPage() {
-    // Create two taxonomy terms.
-    $term1 = $this->createTerm($this->vocabulary);
-    $term2 = $this->createTerm($this->vocabulary);
-
-    // Create nodes with various terms.
-    $nodes['article1'] = $this->drupalCreateNode(array('type' => 'article'));
-    $edit[$this->instance['field_name'] . '[' . $this->langcode . '][]'] = $term1->tid;
-    $this->drupalPost('node/' . $nodes['article1']->nid . '/edit', $edit, t('Save'));
-    
-    $nodes['article2'] = $this->drupalCreateNode(array('type' => 'article'));
-    $edit[$this->instance['field_name'] . '[' . $this->langcode . '][]'] = $term2->tid;
-    $this->drupalPost('node/' . $nodes['article2']->nid . '/edit', $edit, t('Save'));
-
-    $nodes['article1_2'] = $this->drupalCreateNode(array('type' => 'article'));
-    $edit[$this->instance['field_name'] . '[' . $this->langcode . '][]'] = array($term1->tid, $term2->tid);
-    $this->drupalPost('node/' . $nodes['article1_2']->nid . '/edit', $edit, t('Save'));
-
-    // Verify that nodes appear on content admin page.
-    $this->drupalGet('admin/content');
-    $this->assertResponse(200);
-    foreach ($nodes as $node) {
-      $this->assertLinkByHref('node/' . $node->nid);
-    }
-
-    // Verify filtering by term 1.
-    $edit = array(
-      'term' => $term1->tid,
-    );
-    $this->drupalPost(NULL, $edit, t('Filter'));
-    $this->assertRaw(t('<strong>%type</strong> is <strong>%name</strong>', array('%type' => 'term', '%name' => $term1->name)), t('Content list is filtered by term 1.'));
-    $this->assertLinkByHref('node/' . $nodes['article1']->nid . '/edit');
-    $this->assertLinkByHref('node/' . $nodes['article1_2']->nid . '/edit');
-    $this->assertNoLinkByHref('node/' . $nodes['article2']->nid . '/edit');
-
-    // Verify filtering by term 1 and term 2.
-    $edit = array(
-      'term' => $term2->tid,
-    );
-    $this->drupalPost(NULL, $edit, t('Refine'));
-    $this->assertRaw(t('<strong>%type</strong> is <strong>%name</strong>', array('%type' => 'term', '%name' => $term1->name)), t('Content list is filtered by term 1.'));
-    $this->assertRaw(t('<strong>%type</strong> is <strong>%name</strong>', array('%type' => 'term', '%name' => $term2->name)), t('Content list is filtered by term 2.'));
-    $this->assertLinkByHref('node/' . $nodes['article1_2']->nid . '/edit');
-    $this->assertNoLinkByHref('node/' . $nodes['article1']->nid . '/edit');
-    $this->assertNoLinkByHref('node/' . $nodes['article2']->nid . '/edit');
-
-    // Verify filtering by term 2.
-    $this->drupalPost(NULL, $edit, t('Reset'));
-    $edit = array(
-      'term' => $term2->tid,
-    );
-    $this->drupalPost(NULL, $edit, t('Filter'));
-    $this->assertRaw(t('<strong>%type</strong> is <strong>%name</strong>', array('%type' => 'term', '%name' => $term2->name)), t('Content list is filtered by term 2.'));
-    $this->assertLinkByHref('node/' . $nodes['article2']->nid . '/edit');
-    $this->assertLinkByHref('node/' . $nodes['article1_2']->nid . '/edit');
-    $this->assertNoLinkByHref('node/' . $nodes['article1']->nid . '/edit');
-  }
-
-  /**
-   * Test advanced search filtering by taxonomy terms.
-   */
-  function testAdvancedSearch() {
-    // Create two taxonomy terms.
-    $term1 = $this->createTerm($this->vocabulary);
-    $term2 = $this->createTerm($this->vocabulary);
-
-    // Create a node with the term.
-    $node = $this->drupalCreateNode(array('type' => 'article'));
-    $edit[$this->instance['field_name'] . '[' . $this->langcode . '][]'] = $term1->tid;
-    $this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
-
-    // Update the search index.
-    node_update_index();
-    search_update_totals();
-    
-    // Search for the node title.
-    $this->drupalGet('search/node/' . $node->title);
-    $this->assertText($node->title, t('Article node found with search.'));
-
-    // Search for the node title, filtering by term 1.
-    $this->drupalGet('search/node/' . $node->title . ' term:' . $term1->tid);
-    $this->assertText($node->title, t('Article node found with search filtering by term 1.'));
-
-    // Search for the node title, filtering by term 2.
-    $this->drupalGet('search/node/' . $node->title . ' term:' . $term2->tid);
-    $this->assertNoText($node->title, t('Article node not found with search filtering by term 2.'));
-  }
-}
