diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-24 22:56:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-24 22:56:21 +0000 |
commit | 4726c93156e59e0b44faf55845c3f97cf00a9168 (patch) | |
tree | 1aa1e96b3bd00735c1fd3663502a920a2e01f2e5 /modules/book.module | |
parent | 4e4e2aa7770a43c27a421b3f759160094f7d3191 (diff) | |
download | brdo-4726c93156e59e0b44faf55845c3f97cf00a9168.tar.gz brdo-4726c93156e59e0b44faf55845c3f97cf00a9168.tar.bz2 |
- Patch #13443 by Moshe: got rid of the semi-implemented 'page link' feature. All themes currently support primary and secondary links so page links are now deprecated. Check your contributed modules and update them accordingly.
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/book.module b/modules/book.module index 18ca0f7de..a68f97248 100644 --- a/modules/book.module +++ b/modules/book.module @@ -59,10 +59,6 @@ function book_link($type, $node = 0, $main = 0) { $links = array(); - if ($type == 'page' && user_access('access content')) { - $links[] = l(t('books'), 'book', array('title' => t('Read and contribute to the collaborative books.'))); - } - if ($type == 'node' && $node->type == 'book') { if (!$main) { if (book_access('create', $node)) { @@ -82,6 +78,8 @@ function book_menu($may_cache) { $items = array(); if ($may_cache) { + $items[] = array('path' => 'book', 'title' => t('books'), + 'access' => user_access('access content'), 'type' => MENU_NORMAL_ITEM, 'weight' => 5); $items[] = array('path' => 'node/add/book', 'title' => t('book page'), 'access' => user_access('create book pages')); $items[] = array('path' => 'admin/node/book', 'title' => t('books'), |