summaryrefslogtreecommitdiff
path: root/modules/book.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/book.module')
-rw-r--r--modules/book.module4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/book.module b/modules/book.module
index dcc40ae25..200ea3c11 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -149,8 +149,6 @@ function book_validate(&$node) {
}
else {
$node->format = 0;
- $node->body = filter($node->body);
- $node->teaser = filter($node->teaser);
}
// Set default values for non administrators:
@@ -363,7 +361,7 @@ function book_body($node) {
ob_end_clean();
}
else {
- $output = check_output(filter($node->body));
+ $output = check_output($node->body);
}
return $output;