### Eclipse Workspace Patch 1.0 #P drupal51 Index: modules/taxonomy/taxonomy.module =================================================================== RCS file: /usr/local/tapestry/cvsroot//drupal51/modules/taxonomy/taxonomy.module,v retrieving revision 1.2 diff -u -r1.2 taxonomy.module --- modules/taxonomy/taxonomy.module 29 Jul 2007 11:27:05 -0000 1.2 +++ modules/taxonomy/taxonomy.module 11 Sep 2007 18:42:03 -0000 @@ -718,6 +718,9 @@ $default_terms[$term->tid] = $term; } } + if ($_GET['default_id'] != "") { + $default_terms[$_GET['default_id']] = $_GET['default_id']; + } $form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($default_terms), $vocabulary->help); $form['taxonomy'][$vocabulary->vid]['#weight'] = $vocabulary->weight; $form['taxonomy'][$vocabulary->vid]['#required'] = $vocabulary->required;