diff options
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.pages.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc index 0cca252d7..2a8d961a3 100644 --- a/modules/taxonomy/taxonomy.pages.inc +++ b/modules/taxonomy/taxonomy.pages.inc @@ -14,6 +14,9 @@ * The page content. */ function taxonomy_term_page($term) { + // Assign the term name as the page title. + drupal_set_title($term->name); + // Build breadcrumb based on the hierarchy of the term. $current = (object) array( 'tid' => $term->tid, |