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/marvin/marvin.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/marvin/marvin.theme')
-rw-r--r-- | themes/marvin/marvin.theme | 6 |
1 files changed, 3 insertions, 3 deletions
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 " <tr><td colspan=\"2\"> </td></tr>\n"; if ($main && $node->teaser) { - print " <tr><td colspan=\"2\"><p>". check_output($node->teaser) ."</p></td></tr>\n"; + print " <tr><td colspan=\"2\"><p>$node->teaser</p></td></tr>\n"; } else { - print " <tr><td colspan=\"2\"><p>". check_output($node->body) ."</p></td></tr>\n"; + print " <tr><td colspan=\"2\"><p>$node->body</p></td></tr>\n"; } print " <tr><td colspan=\"2\"> </td></tr>\n"; @@ -147,7 +147,7 @@ // Print body of comment: if ($comment->comment) { - print " <tr><td bgcolor=\"#FFFFFF\">". check_output($comment->comment) ."</td></tr>\n"; + print " <tr><td bgcolor=\"#FFFFFF\">$comment->comment</td></tr>\n"; } // Print bottom link(s): |