summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-28 08:26:51 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-28 08:26:51 +0000
commit348f1b8a4ccbfdc72d7ac96f9c910e7bfef15028 (patch)
tree55756c23060b157858394abdf213b3d036bb6816 /themes
parent550e9b3f59c21923a717175fb3fc7af48fa7cc5d (diff)
downloadbrdo-348f1b8a4ccbfdc72d7ac96f9c910e7bfef15028.tar.gz
brdo-348f1b8a4ccbfdc72d7ac96f9c910e7bfef15028.tar.bz2
- Patch #351649 by David_Rothstein: comment status incorrectly used in theme.
Diffstat (limited to 'themes')
-rw-r--r--themes/chameleon/chameleon.theme2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index ad7c2b725..307407642 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -162,7 +162,7 @@ function chameleon_comment($comment, $node, $links = array()) {
'title' => t('By !author at @date', array('!author' => theme('username', $comment), '@date' => format_date($comment->timestamp, 'small'))),
'html' => TRUE);
- $output = "<div class=\"comment" . ' ' . $comment->status . "\">\n";
+ $output = "<div class=\"comment\">\n";
$output .= " <h3 class=\"title\">" . l($comment->subject, $_GET['q'], array('fragment' => "comment-$comment->cid")) . "</h3>\n";
$output .= " <div class=\"content\">" . $comment->comment;
if (!empty($comment->signature)) {