From d8f78a7c9526f473ac26d4b51b09d235720c1858 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 26 May 2003 19:50:39 +0000 Subject: - Removed check_output() from the theme system layer. --- themes/marvin/marvin.theme | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'themes/marvin') diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 6614ade7f..7f2e91fd0 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -98,10 +98,10 @@ print "  \n"; if ($main && $node->teaser) { - print "

". check_output($node->teaser) ."

\n"; + print "

$node->teaser

\n"; } else { - print "

". check_output($node->body) ."

\n"; + print "

$node->body

\n"; } print "  \n"; @@ -147,7 +147,7 @@ // Print body of comment: if ($comment->comment) { - print " ". check_output($comment->comment) ."\n"; + print " $comment->comment\n"; } // Print bottom link(s): -- cgit v1.2.3