diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-23 10:11:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-23 10:11:10 +0000 |
commit | c485b545550faa036e1c35b2296c39d85b8cfca9 (patch) | |
tree | 914be9ff79eed714c49a1eea92d75a1259b270a9 /modules/book.module | |
parent | 60ce4e054efdc1a311b83032c7daec1f3a6a42ea (diff) | |
download | brdo-c485b545550faa036e1c35b2296c39d85b8cfca9.tar.gz brdo-c485b545550faa036e1c35b2296c39d85b8cfca9.tar.bz2 |
- Fixed a number of small user experience inconsistencies pointed out by
Keith.
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 85f70c7f6..a0f52f5e1 100644 --- a/modules/book.module +++ b/modules/book.module @@ -412,7 +412,7 @@ 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("Home"), ""); - $trail[] = l(t("books"), "book"); + $trail[] = l(t("Books"), "book"); foreach ($path as $level) { $trail[] = l($level->title, "node/view/$level->nid"); } |