diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 10:49:44 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-15 10:49:44 +0000 |
commit | 66ccfb3f8dd99b3757beebaf2f7363820b8c20aa (patch) | |
tree | fa3572a6a721e398bc54cfbb25efc2bf3bc09b90 /modules/comment/comment.module | |
parent | a5c05512fc526e65f1aa556874046d9ff74eb5a7 (diff) | |
download | brdo-66ccfb3f8dd99b3757beebaf2f7363820b8c20aa.tar.gz brdo-66ccfb3f8dd99b3757beebaf2f7363820b8c20aa.tar.bz2 |
- fixed the markup of the collapsed comment view settings.
- updated update.php and database.mysql disable a few more modules by default.
Without the config options in place to disable things this might confuse users.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 41eb876b2..3dc248914 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -423,7 +423,7 @@ function comment_view($comment, $folded = 0) { $theme->comment($comment, $folded); } else { - print l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid) ." ". t("by") ." ". format_name($comment) ."</small><p />"; + print "<li>". l(check_output($comment->subject), array("id" => $comment->nid, "cid" => $comment->cid), "node", $comment->cid, array("title" => t("Read comment."))) ." ". t("by") ." ". format_name($comment) ."</li>\n"; } } |