diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-26 19:50:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-26 19:50:39 +0000 |
commit | d8f78a7c9526f473ac26d4b51b09d235720c1858 (patch) | |
tree | 7d537a6b6b11c39f3e97515c6c012c475be81428 /themes/unconed/unconed.theme | |
parent | 1cdda38df7724e408ede80f35089ee2c8365f562 (diff) | |
download | brdo-d8f78a7c9526f473ac26d4b51b09d235720c1858.tar.gz brdo-d8f78a7c9526f473ac26d4b51b09d235720c1858.tar.bz2 |
- Removed check_output() from the theme system layer.
Diffstat (limited to 'themes/unconed/unconed.theme')
-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 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>"; |