diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-07-03 13:51:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-07-03 13:51:50 +0000 |
commit | b1869f61313ec8d756b6e03de6d26388730d1937 (patch) | |
tree | d0e0df1c35eb0c9026161f92f55303f50f4ab164 /modules/book.module | |
parent | 7d176b393c75945acf9b1aa1797001fdd36965cc (diff) | |
download | brdo-b1869f61313ec8d756b6e03de6d26388730d1937.tar.gz brdo-b1869f61313ec8d756b6e03de6d26388730d1937.tar.bz2 |
- Patch #71014 by fgm: fixed the parent navigation link.
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 b4ade10bd..5d58ad5d5 100644 --- a/modules/book.module +++ b/modules/book.module @@ -509,7 +509,7 @@ function theme_book_navigation($node) { $links .= l(t('‹ ') . $prev->title, 'node/'. $prev->nid, array('class' => 'page-previous', 'title' => t('Go to previous page'))); } if ($node->parent) { - drupal_add_link(array('rel' => 'index', 'href' => url('node/'. $node->parent))); + drupal_add_link(array('rel' => 'up', 'href' => url('node/'. $node->parent))); $links .= l(t('up'), 'node/'. $node->parent, array('class' => 'page-up', 'title' => t('Go to parent page'))); } if ($next = book_next($node)) { |