summaryrefslogtreecommitdiff
path: root/themes/unconed/unconed.theme
diff options
context:
space:
mode:
Diffstat (limited to 'themes/unconed/unconed.theme')
-rw-r--r--themes/unconed/unconed.theme6
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme
index 41ad41dfc..f1dee7e58 100644
--- a/themes/unconed/unconed.theme
+++ b/themes/unconed/unconed.theme
@@ -115,10 +115,10 @@
<TD BGCOLOR="<?php echo $this->bgcolor2 ?>" COLSPAN="2">
<?php
if ($main && $node->teaser) {
- echo "<P>". check_output($node->teaser) ."</P>";
+ echo "<P>$node->teaser</P>";
}
else {
- echo "<P>". check_output($node->body) ."</P>";
+ echo "<P>$node->body</P>";
}
?>
</TD>
@@ -167,7 +167,7 @@
echo " </TR>";
// Print body of comment:
- if ($comment) echo " <TR><TD BGCOLOR=\"$this->bgcolor2\">". check_output($comment->comment) ."</TD></TR>";
+ if ($comment) echo " <TR><TD BGCOLOR=\"$this->bgcolor2\">$comment->comment</TD></TR>";
// Print bottom link(s):
echo " <TR><TD ALIGN=\"right\" BGCOLOR=\"$this->bgcolor3\">[ $link ]</TD></TR>";