diff options
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index ebcf4dd9c..23349c322 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -30,9 +30,9 @@ function taxonomy_link($type, $node = NULL) { if (array_key_exists('taxonomy', $node)) { foreach ($node->taxonomy as $term) { $links['taxonomy_term_'. $term->tid] = array( - '#title' => $term->name, - '#href' => taxonomy_term_path($term), - '#attributes' => array('rel' => 'tag', 'title' => strip_tags($term->description)) + 'title' => $term->name, + 'href' => taxonomy_term_path($term), + 'attributes' => array('rel' => 'tag', 'title' => strip_tags($term->description)) ); } } |