summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/book/book.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index f8b8903e8..8e22d7be4 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -781,7 +781,7 @@ function book_recurse($nid = 0, $depth = 1, $visit_pre, $visit_post) {
*/
function book_node_visitor_html_pre($node, $depth, $nid) {
// Remove the delimiter (if any) that separates the teaser from the body.
- $node->body = str_replace('<break>', '', $node->body);
+ $node->body = str_replace('<!--break-->', '', $node->body);
// The 'view' hook can be implemented to overwrite the default function
// to display nodes.