diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-21 11:12:46 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-21 11:12:46 +0000 |
commit | 6777fdb193fb9db01243082b4181ef7637c4ac91 (patch) | |
tree | 80ffe7f9289ec3a15c0374a96e2ff4d6421a4614 /modules/forum.module | |
parent | a9260fa2cd279851db674fa84c1efebfe103ba0d (diff) | |
download | brdo-6777fdb193fb9db01243082b4181ef7637c4ac91.tar.gz brdo-6777fdb193fb9db01243082b4181ef7637c4ac91.tar.bz2 |
- #26583: Make forum taxonomy links redirect to forums rather than taxonomy pages.
Diffstat (limited to 'modules/forum.module')
-rw-r--r-- | modules/forum.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/forum.module b/modules/forum.module index 07232f441..69e96621d 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -434,6 +434,10 @@ function forum_link($type, $node = 0, $main = 0) { return $links; } +function forum_term_path($term) { + return 'forum/'. $term->tid; +} + /** * Implementation of hook_menu(). */ |