summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-05-26 19:50:39 +0000
committerDries Buytaert <dries@buytaert.net>2003-05-26 19:50:39 +0000
commitd8f78a7c9526f473ac26d4b51b09d235720c1858 (patch)
tree7d537a6b6b11c39f3e97515c6c012c475be81428 /includes/theme.inc
parent1cdda38df7724e408ede80f35089ee2c8365f562 (diff)
downloadbrdo-d8f78a7c9526f473ac26d4b51b09d235720c1858.tar.gz
brdo-d8f78a7c9526f473ac26d4b51b09d235720c1858.tar.bz2
- Removed check_output() from the theme system layer.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 31f7aabbc..2f1569b44 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -54,10 +54,10 @@ class BaseTheme {
}
if ($main && $node->teaser) {
- $output .= check_output($node->teaser);
+ $output .= $node->teaser;
}
else {
- $output .= check_output($node->body);
+ $output .= $node->body;
}
if ($links = link_node($node, $main)) {
$output .= "<br />[ ". $this->links($links) ." ]";