diff options
-rw-r--r-- | modules/comment/comment.module | 2 | ||||
-rw-r--r-- | themes/bluemarine/comment.tpl.php | 3 | ||||
-rw-r--r-- | themes/chameleon/chameleon.theme | 3 | ||||
-rw-r--r-- | themes/garland/comment.tpl.php | 4 | ||||
-rw-r--r-- | themes/pushbutton/comment.tpl.php | 3 |
5 files changed, 9 insertions, 6 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; diff --git a/themes/bluemarine/comment.tpl.php b/themes/bluemarine/comment.tpl.php index 810204fc2..b73b7aef3 100644 --- a/themes/bluemarine/comment.tpl.php +++ b/themes/bluemarine/comment.tpl.php @@ -7,7 +7,8 @@ <div class="content"> <?php print $content; ?> <?php if ($signature): ?> - <div class="user-signature clear-block"> + <div class="clear-block"> + <div>—</div> <?php print $signature ?> </div> <?php endif; ?> diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index c3da58a40..bdd455616 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -165,7 +165,8 @@ function chameleon_comment($comment, $links = "") { $output .= " <h3 class=\"title\">". l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid") ."</h3>\n"; $output .= " <div class=\"content\">". $comment->comment; if ($signature) { - $output .= " <div class=\"user-signature clear-block\">"; + $output .= " <div class=\"clear-block\">"; + $output .= "<div>—</div>\n"; $output .= $signature ."\n"; $output .= " </div>\n"; } diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php index 1ca545f12..a28a1c551 100644 --- a/themes/garland/comment.tpl.php +++ b/themes/garland/comment.tpl.php @@ -17,12 +17,12 @@ <div class="content"> <?php print $content ?> <?php if ($signature): ?> - <div class="user-signature clear-block"> + <div class="clear-block"> + <div>—</div> <?php print $signature ?> </div> <?php endif; ?> </div> - </div> <?php if ($links): ?> diff --git a/themes/pushbutton/comment.tpl.php b/themes/pushbutton/comment.tpl.php index 20949e774..dba7452d5 100644 --- a/themes/pushbutton/comment.tpl.php +++ b/themes/pushbutton/comment.tpl.php @@ -7,7 +7,8 @@ <div class="content"> <?php print $content ?> <?php if ($signature): ?> - <div class="user-signature clear-block"> + <div class="clear-block"> + <div>—</div> <?php print $signature ?> </div> <?php endif; ?> |