From defed7ec26a1911e2a4d3a08503f4efce5fce681 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 11 Aug 2008 21:57:40 +0000 Subject: - Patch #197864 by vito_swat, alpritt, Gurpartap Singh et al: forum module uses hook_link_alter instead of taxonomy_term_path hook. --- modules/forum/forum.module | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'modules/forum') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index c9a045596..ac245a498 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -464,19 +464,11 @@ function forum_form(&$node, $form_state) { return $form; } -function forum_link_alter(&$links, $node) { - foreach ($links as $module => $link) { - if (strstr($module, 'taxonomy_term')) { - // Link back to the forum and not the taxonomy term page. We'll only - // do this if the taxonomy term in question belongs to forums. - $tid = str_replace('taxonomy/term/', '', $link['href']); - $vid = variable_get('forum_nav_vocabulary', ''); - $term = taxonomy_get_term($tid); - if ($term->vid == $vid) { - $links[$module]['href'] = str_replace('taxonomy/term', 'forum', $link['href']); - } - } - } +/** + * Implementation of hook_term_path(). + */ +function forum_term_path($term) { + return 'forum/' . $term->tid; } /** -- cgit v1.2.3