From 4267ab5ea9b9da549d9384d3d76c2f54858edb80 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 22 Jan 2006 07:32:55 +0000 Subject: [PATCH] - Patch #45706 by markus: keeping up with CSS improvements. --- modules/book.module | 2 +- modules/book/book.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/book.module b/modules/book.module index 60ec8cc15180..9a0c736285bf 100644 --- a/modules/book.module +++ b/modules/book.module @@ -614,7 +614,7 @@ function book_tree($parent = 0, $depth = 3, $unfold = array()) { } if ($tree = book_tree_recurse($parent, $depth, $children, $unfold)) { - return '<div class="menu"><ul>'. $tree .'</ul></div>'; + return '<ul class="menu">'. $tree .'</ul>'; } } diff --git a/modules/book/book.module b/modules/book/book.module index 60ec8cc15180..9a0c736285bf 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -614,7 +614,7 @@ function book_tree($parent = 0, $depth = 3, $unfold = array()) { } if ($tree = book_tree_recurse($parent, $depth, $children, $unfold)) { - return '<div class="menu"><ul>'. $tree .'</ul></div>'; + return '<ul class="menu">'. $tree .'</ul>'; } } -- GitLab