From de5b9a168daeef12b6f7bcf6e43b767a2d7f35d8 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Mon, 22 Apr 2002 09:05:36 +0000 Subject: - bug fixes: * fixed mails not being parsed properly. * tracker now shows user name when you view your own recent comments. * link to submission queue now points to the right place. * fixed jabber module. * theme is now activated when changed. - applied Gerhards coding style patch. --- modules/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum.module') diff --git a/modules/forum.module b/modules/forum.module index 3c2d5c5c7..64597ab2c 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -47,7 +47,7 @@ function forum_link($type) { function forum_view($node) { global $theme; - $output .= "

".lm(t("Forum"), array("mod" => "forum"))." / ".l(check_output($node->title), array("id" => $node->nid)).":

". check_output($node->body) ."

"; + $output .= "

". lm(t("Forum"), array("mod" => "forum")) ." / ". l(check_output($node->title), array("id" => $node->nid)) .":

". check_output($node->body) ."

"; $output .= "

". $theme->links(link_node($node, $main)) ."

"; $theme->box(t("Discussion forum"), $output); @@ -81,7 +81,7 @@ function forum_page() { $output .= " ". t("Forum") ."". t("Comments") ."". t("Last comment") .""; while ($node = db_fetch_object($result)) { $node = node_load(array("nid" => $node->nid)); - $output .= " ".l(check_output($node->title), array("id" => $node->nid))."
". check_output($node->body, 1) ."". forum_num_comments($node->nid) ."". forum_last_comment($node->nid) .""; + $output .= " ". l(check_output($node->title), array("id" => $node->nid)) ."
". check_output($node->body, 1) ."". forum_num_comments($node->nid) ."". forum_last_comment($node->nid) .""; } $output .= ""; -- cgit v1.2.3