In taxonomy_context.module in function theme_taxonomy_context_subterm($term) on line 160 the link text is $term->title.

$output .= " <h2 class=\"title\">" . l($term->title, "taxonomy/term/" . $term->tid) . "</h2>\n";

$term->title does not exist in Drupal 4.6.7, correct me if I am wrong.

I changed it to $term->description and get now the according term description on the screen consistentently with other parts of taxonomy_context, where the shortest reference to a term is $term->description (i. e. for breadcrumbs).

$output .= " <h2 class=\"title\">" . l($term->description, "taxonomy/term/" . $term->tid) . "</h2>\n";

cheers, alex -

Comments

nancydru’s picture

Status: Needs review » Closed (fixed)

Reopen this with a current release if it is still valid.