From ee35d9136e70cbafad2574089c6f346ab5a635ba Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 12 Sep 2003 18:13:22 +0000 Subject: - Made the forum module's breadcrumb navigation fully themable. Patch by Nick. - Changed 'pubdate' to 'pubDate'. Patch by Kristjan. - Fixed in Xtemplate theme; don't use return value of node_url() raw and uncut. Patch by me. --- modules/forum/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 57e789a96..3ac6dc2ca 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -157,7 +157,7 @@ function forum_view($node, $main = 0) { $trail[] = l(t("Forums"), "forum"); $trail[] = l($term_data->name, "forum/$term_data->tid"); - print "
". implode($trail, " » ") ."
"; + theme("path", $trail); } $node->teaser = check_output($node->teaser); @@ -490,7 +490,7 @@ function forum_theme_display($forums, $topics, $parents, $tid, $sortby, $forum_p $output .= ""; theme("header"); - print "
". implode($trail, " » ") ."
"; + theme("path", $trail); theme("box", $title, $output); theme("footer"); } -- cgit v1.2.3