? 460206-add-taxonomy-to-editview-form.patch ? LICENSE.txt Index: theme/editview.theme.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/editview/theme/editview.theme.inc,v retrieving revision 1.1.2.2 diff -u -p -r1.1.2.2 editview.theme.inc --- theme/editview.theme.inc 4 May 2009 13:28:02 -0000 1.1.2.2 +++ theme/editview.theme.inc 11 Jul 2010 03:54:05 -0000 @@ -115,6 +115,9 @@ function editview_field_form_render(&$fo if (isset($field->table_alias) && is_numeric($vocab_id = str_replace('term_node_', '', $field->table_alias))) { $element['data'] = drupal_render($form['taxonomy'][$vocab_id]); } + elseif ($field->field == 'tid') { + $element['data'] = drupal_render($form['taxonomy']); + } else { // If the field is a cck field, send through the right identifier. if (isset($field->content_field)) {