Index: taxonomy_breadcrumb.module =================================================================== --- taxonomy_breadcrumb.module (revision 99) +++ taxonomy_breadcrumb.module (working copy) @@ -236,6 +236,10 @@ // Extract lightest term from lightest vocabulary assosciated with node. $term = taxonomy_breadcrumb_node_get_lightest_term($node->nid); $breadcrumb = taxonomy_breadcrumb_generate_breadcrumb($term->tid); + + // PATCH: Add on the title of the node to the end of the breadcrumb as unlinked text + $breadcrumb[] = $node->title; + drupal_set_breadcrumb($breadcrumb); } }