diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-30 19:12:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-30 19:12:44 +0000 |
commit | 327a256a2e701efbf39e985791526f883ee4ffbe (patch) | |
tree | e28205762e3c453cb0d064fa7bd85ff35232dbc3 | |
parent | f97999d1a49a6d5882003a91cce5cd04abbef021 (diff) | |
download | brdo-327a256a2e701efbf39e985791526f883ee4ffbe.tar.gz brdo-327a256a2e701efbf39e985791526f883ee4ffbe.tar.bz2 |
- Removed the title attribute from the taxonomy links. Temporary fix for #7468.
-rw-r--r-- | modules/taxonomy.module | 4 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 1e14e7adf..3c2fdfa61 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -30,13 +30,13 @@ function taxonomy_link($type, $node = NULL) { if (array_key_exists('taxonomy', $node)) { foreach ($node->taxonomy as $tid) { $term = taxonomy_get_term($tid); - $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array()); + $links[] = l($term->name, 'taxonomy/term/'. $term->tid); } } else { $links = array(); foreach (taxonomy_node_get_terms($node->nid) as $term) { - $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array()); + $links[] = l($term->name, 'taxonomy/term/'. $term->tid); } } diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 1e14e7adf..3c2fdfa61 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -30,13 +30,13 @@ function taxonomy_link($type, $node = NULL) { if (array_key_exists('taxonomy', $node)) { foreach ($node->taxonomy as $tid) { $term = taxonomy_get_term($tid); - $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array()); + $links[] = l($term->name, 'taxonomy/term/'. $term->tid); } } else { $links = array(); foreach (taxonomy_node_get_terms($node->nid) as $term) { - $links[] = l($term->name, 'taxonomy/term/'. $term->tid, $term->description ? array ('title' => check_output($term->description)) : array()); + $links[] = l($term->name, 'taxonomy/term/'. $term->tid); } } |