From 4e2ee96d4c04fbee06abcd3d0bf84a7893792c7f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 22 Aug 2003 17:06:44 +0000 Subject: - Removed left-overs from the rating module. Patch by Gerhard. Updated the PostgreSQL and MSSQL database scheme as well. - Made sure the update script updates the correct tables when database prefixing is enabled. Patch by Bart Jansens. - Improved the breadcrumb navigation of the book and the forum module as per Keith Instone's suggestions. - Updated page titles (or block titles) and links to match. Suggested by Keith Instone. - Added missing 'thread' field to the comment table of the MySQL database scheme. Fixes bug #2590. --- modules/book.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/book.module') diff --git a/modules/book.module b/modules/book.module index e8f672cbf..85f70c7f6 100644 --- a/modules/book.module +++ b/modules/book.module @@ -411,7 +411,8 @@ function book_view($node, $main = 0) { // build the tree from bottom to top to have the book index in $level for navigation later $path = book_location($node); - $trail[] = l(t("Books"), "book"); + $trail[] = l(t("Home"), ""); + $trail[] = l(t("books"), "book"); foreach ($path as $level) { $trail[] = l($level->title, "node/view/$level->nid"); } -- cgit v1.2.3