diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-04-17 16:03:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-04-17 16:03:50 +0000 |
commit | 394fe19ac62d5d028caac6bb63fa338f2b97f3d6 (patch) | |
tree | 8bcebff092e1b56a01469e19843128a1829f5702 /modules/book/book.module | |
parent | 2a48cf38e5860808ee6cc0f7253b2a60cf9bb3aa (diff) | |
download | brdo-394fe19ac62d5d028caac6bb63fa338f2b97f3d6.tar.gz brdo-394fe19ac62d5d028caac6bb63fa338f2b97f3d6.tar.bz2 |
- Patch #20661 by rooey: fixed formatting of book navigation. Added missing '<div id=menu>'.
Diffstat (limited to 'modules/book/book.module')
-rw-r--r-- | modules/book/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module index 0a207c700..e4c018882 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -585,7 +585,7 @@ function book_tree($parent = 0, $depth = 3, $unfold = array()) { } if ($tree = book_tree_recurse($parent, $depth, $children, $unfold)) { - return '<ul>'. $tree .'</ul>'; + return '<div class="menu"><ul>'. $tree .'</ul></div>'; } } |