diff options
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module index d5802fb33..50aae88f6 100644 --- a/modules/book.module +++ b/modules/book.module @@ -573,7 +573,7 @@ function book_navigation($node) { foreach ($path as $level) { $node->breadcrumb[] = array('path' => 'book/view/'. $level->nid, 'title' => $level->title); } - $node->breadcrumb[] = array('path' => 'book/view/'. $node->nid); + $node->breadcrumb[] = array('path' => 'node/'. $node->nid); if ($node->nid) { $output .= '<div class="book">'; |