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, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module
index c7f18d872..43d71edca 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -427,7 +427,7 @@ function book_next($node) {
}
/**
- * Returns the content of a given node. If $teaser if true, returns
+ * Returns the content of a given node. If $teaser if TRUE, returns
* the teaser rather than full content. Displays the most recently
* approved revision of a node (if any) unless we have to display this
* page in the context of the moderation queue.
@@ -802,7 +802,7 @@ function book_node_visitor_html_pre($node, $depth, $nid) {
$node = node_invoke($node, 'content');
}
// Allow modules to change $node->body before viewing.
- node_invoke_nodeapi($node, 'print', $node->body, false);
+ node_invoke_nodeapi($node, 'print', $node->body, FALSE);
$output .= "<div id=\"node-". $node->nid ."\" class=\"section-$depth\">\n";
$output .= "<h1 class=\"book-heading\">". check_plain($node->title) ."</h1>\n";