diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-29 10:16:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-29 10:16:11 +0000 |
commit | f7e11d3bb763d0f8c3b0551b7f5848f72c557ac0 (patch) | |
tree | 378804dfd8acc62f565ce6e666a6adf04a163b7f | |
parent | 8d2b1238b4d8ebd57848fde665b7f93c3a03cd90 (diff) | |
download | brdo-f7e11d3bb763d0f8c3b0551b7f5848f72c557ac0.tar.gz brdo-f7e11d3bb763d0f8c3b0551b7f5848f72c557ac0.tar.bz2 |
- The check_output()s slipped back in. Removing them again.
-rw-r--r-- | themes/unconed/unconed.theme | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index 9d3c0f4bf..b5762aba6 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -97,10 +97,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> @@ -149,7 +149,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>"; |