*** taxonomy_dhtml.module	2005-07-30 11:34:26.783564064 -0400
--- taxonomy_dhtml.module.new	2005-07-29 20:10:43.023256336 -0400
***************
*** 41,49 ****
  // TODO: recipe.module and node_aggregator did use $type to filter results to their own node type. no longer supported (but should be)
  function taxonomy_dhtml_vocab_vert($vocabulary_id, $op = NULL) {
    $tree = taxonomy_get_tree($vocabulary_id);
    // build an array which holds all children of current term. necessary to build a proper 'or' value in the HREF
    foreach ($tree as $term) {
!     $link = l(t($term->name), "taxonomy/term/$term->tid/9". $op ? "/$op" : '', array("title" => t($term->description)));
      $out .= _taxonomy_depth($term->depth, "&nbsp;")."- $link";
      $count = taxonomy_term_count_nodes($term->tid);
      if ($count) {
--- 41,50 ----
  // TODO: recipe.module and node_aggregator did use $type to filter results to their own node type. no longer supported (but should be)
  function taxonomy_dhtml_vocab_vert($vocabulary_id, $op = NULL) {
    $tree = taxonomy_get_tree($vocabulary_id);
+   $op = $op ? "/$op" : '';
    // build an array which holds all children of current term. necessary to build a proper 'or' value in the HREF
    foreach ($tree as $term) {
!     $link = l(t($term->name), "taxonomy/term/$term->tid/9".$op, array("title" => t($term->description)));
      $out .= _taxonomy_depth($term->depth, "&nbsp;")."- $link";
      $count = taxonomy_term_count_nodes($term->tid);
      if ($count) {
