diff options
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 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; |