Index: taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy.module,v
retrieving revision 1.216
diff -r1.216 taxonomy.module
988c988,999
< function taxonomy_render_nodes($result) {
---
> function taxonomy_render_nodes($result, $vid = 0) {
>   if ($vid) {
>     $vocab = taxonomy_get_vocabulary($vid);
>     if (count($vocab->nodes) == 1) {
>       $node_type = $vocab->nodes[0];
>       $output = node_invoke($node_type, 'render_nodes', $result, $vid);
>       if ($output) {
>         return $output;
>       }
>     }
>   }
> 
