diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-04-01 05:04:20 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-04-01 05:04:20 +0000 |
commit | a2baa4449965082c2a22bbb5e7d0ef9fccf2371b (patch) | |
tree | d96207b12196e547e3820f8e85c1ed91a6144cc0 /modules | |
parent | dd30a142086c698844911b3eb1d54a6566aee107 (diff) | |
download | brdo-a2baa4449965082c2a22bbb5e7d0ef9fccf2371b.tar.gz brdo-a2baa4449965082c2a22bbb5e7d0ef9fccf2371b.tar.bz2 |
#130366: Better styling for signature separator (thanks webchick).
Diffstat (limited to 'modules')
-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 ff29b34f0..1c650eaff 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1776,7 +1776,7 @@ function theme_comment($comment, $links = array()) { $output .= '<div class="subject">'. l($comment->subject, $_GET['q'], array('fragment' => "comment-$comment->cid")) . ' ' . theme('mark', $comment->new) ."</div>\n"; $output .= '<div class="credit">'. t('by %a on %b', array('%a' => theme('username', $comment), '%b' => format_date($comment->timestamp))) ."</div>\n"; $output .= '<div class="body">'. $comment->comment .'</div>'; - $output .= '<div class="user-signature clear">'. $comment->signature .'</div>'; + $output .= '<div class="clear"><div>—</div>'. $comment->signature .'</div>'; $output .= '<div class="links">'. theme('links', $links) .'</div>'; $output .= '</div>'; return $output; |