From f9a508d5dd70e85c674d326efdd60ba46672b526 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 27 Jan 2002 14:58:45 +0000 Subject: - Fixed more than 30 HTML and XML well-formedness errors. --- modules/comment/comment.module | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'modules/comment/comment.module') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 820e5ce41..9c2648b9b 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -290,7 +290,7 @@ function comment_moderation($comment) { $options .= " \n"; } - $output .= "
". ($comment->score ? $comment->score : "--") ." / $comment->votes"; + $output .= "
". ($comment->score ? $comment->score : "--") ." / $comment->votes"; return $output; } @@ -299,21 +299,21 @@ function comment_threshold($threshold) { // XXX: disabled for now return ""; - for ($i = 0; $i < 6; $i++) $options .= " "; + for ($i = 0; $i < 6; $i++) $options .= " "; return "\n"; } function comment_mode($mode) { global $cmodes; - foreach ($cmodes as $key => $value) $options .= " \n"; + foreach ($cmodes as $key => $value) $options .= " \n"; return "\n"; } function comment_order($order) { global $corder; - foreach ($corder as $key=>$value) $options .= " \n"; + foreach ($corder as $key=>$value) $options .= " \n"; return "\n"; } @@ -353,19 +353,19 @@ function comment_links($comment, $return = 1) { $links = array(); if ($return) { - $links[] = "nid#$comment->cid\">type\">". t("return") .""; + $links[] = "nid#$comment->cid\">type;\">". t("return") .""; } if (user_access("administer comments")) { - $links[] = "cid\" title=\"". t("Administer this comment.") ."\">type\">". t("administer") .""; + $links[] = "cid\" title=\"". t("Administer this comment.") ."\">type;\">". t("administer") .""; } if (user_access("post comments")) { if (comment_access("edit", $comment)) { - $links[] = "cid\">type\" title=\"". t("Make changes to your comment.") ."\">". t("edit your comment") .""; + $links[] = "cid\" title=\"". t("Make changes to your comment.") ."\">type\">". t("edit your comment") .""; } else { - $links[] = "nid&pid=$comment->cid\" title=\"". t("Reply to this comment.") ."\">type\">". t("reply to this comment") .""; + $links[] = "nid&pid=$comment->cid\" title=\"". t("Reply to this comment.") ."\">type;\">". t("reply to this comment") .""; } } @@ -377,7 +377,7 @@ function comment_view($comment, $folded = 0) { global $theme, $id; if (comment_is_new($comment)) { - $comment->subject = "$comment->subject *"; + $comment->subject = "$comment->subject *"; } if ($folded) { -- cgit v1.2.3