summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-27 10:09:14 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-27 10:09:14 +0000
commit89e53ea6c3d62c8847cfc582dc1e13a6808b7cc2 (patch)
treea0a91a9f3c0866feb82caead4268d596618ab27d /themes
parent445823f6bbb1eeef744f6838b7a0c5aab34af57d (diff)
downloadbrdo-89e53ea6c3d62c8847cfc582dc1e13a6808b7cc2.tar.gz
brdo-89e53ea6c3d62c8847cfc582dc1e13a6808b7cc2.tar.bz2
- Patch #351444 by David_Rothstein: chameleon and marvin themes did not show comment signatures.
Diffstat (limited to 'themes')
-rw-r--r--themes/chameleon/chameleon.theme4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 0253eec06..ad7c2b725 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -165,10 +165,10 @@ function chameleon_comment($comment, $node, $links = array()) {
$output = "<div class=\"comment" . ' ' . $comment->status . "\">\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($signature)) {
+ if (!empty($comment->signature)) {
$output .= " <div class=\"clear-block\">";
$output .= "<div>—</div>\n";
- $output .= $signature . "\n";
+ $output .= $comment->signature . "\n";
$output .= " </div>\n";
}
$output .= " </div>\n";