summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
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) ." ]";