diff options
-rw-r--r-- | modules/book.module | 6 | ||||
-rw-r--r-- | modules/book/book.module | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/book.module b/modules/book.module index 1768ab6e9..92f5c4a83 100644 --- a/modules/book.module +++ b/modules/book.module @@ -487,7 +487,7 @@ function theme_book_navigation($node) { } if ($prev = book_prev($node)) { - drupal_add_link(array('rel' => 'prev', 'href' => 'node/'. $prev->nid)); + drupal_add_link(array('rel' => 'prev', 'href' => url('node/'. $prev->nid))); $links .= '<div class="prev">'; $links .= l(t('previous'), 'node/'. $prev->nid, array('title' => t('View the previous page.'))); $links .= '</div>'; @@ -497,7 +497,7 @@ function theme_book_navigation($node) { $links .= '<div class="prev"> </div>'; // Make an empty div to fill the space. } if ($next = book_next($node)) { - drupal_add_link(array('rel' => 'next', 'href' => 'node/'. $next->nid)); + drupal_add_link(array('rel' => 'next', 'href' => url('node/'. $next->nid))); $links .= '<div class="next">'; $links .= l(t('next'), 'node/'. $next->nid, array('title' => t('View the next page.'))); $links .= '</div>'; @@ -507,7 +507,7 @@ function theme_book_navigation($node) { $links .= '<div class="next"> </div>'; // Make an empty div to fill the space. } if ($node->parent) { - drupal_add_link(array('rel' => 'index', 'href' => 'node/'. $node->parent)); + drupal_add_link(array('rel' => 'index', 'href' => url('node/'. $node->parent))); $links .= '<div class="up">'; $links .= l(t('up'), 'node/'. $node->parent, array('title' => t('View this page\'s parent section.'))); $links .= '</div>'; diff --git a/modules/book/book.module b/modules/book/book.module index 1768ab6e9..92f5c4a83 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -487,7 +487,7 @@ function theme_book_navigation($node) { } if ($prev = book_prev($node)) { - drupal_add_link(array('rel' => 'prev', 'href' => 'node/'. $prev->nid)); + drupal_add_link(array('rel' => 'prev', 'href' => url('node/'. $prev->nid))); $links .= '<div class="prev">'; $links .= l(t('previous'), 'node/'. $prev->nid, array('title' => t('View the previous page.'))); $links .= '</div>'; @@ -497,7 +497,7 @@ function theme_book_navigation($node) { $links .= '<div class="prev"> </div>'; // Make an empty div to fill the space. } if ($next = book_next($node)) { - drupal_add_link(array('rel' => 'next', 'href' => 'node/'. $next->nid)); + drupal_add_link(array('rel' => 'next', 'href' => url('node/'. $next->nid))); $links .= '<div class="next">'; $links .= l(t('next'), 'node/'. $next->nid, array('title' => t('View the next page.'))); $links .= '</div>'; @@ -507,7 +507,7 @@ function theme_book_navigation($node) { $links .= '<div class="next"> </div>'; // Make an empty div to fill the space. } if ($node->parent) { - drupal_add_link(array('rel' => 'index', 'href' => 'node/'. $node->parent)); + drupal_add_link(array('rel' => 'index', 'href' => url('node/'. $node->parent))); $links .= '<div class="up">'; $links .= l(t('up'), 'node/'. $node->parent, array('title' => t('View this page\'s parent section.'))); $links .= '</div>'; |