summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-24 08:22:12 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-24 08:22:12 +0000
commit3c6066cffaa3bd45508b00c2b1e47677421f38eb (patch)
treec76c556cc52caa29be460c9866c11099b88fce06
parentb9f6b72a5877943e13d940e0705826d002ca1361 (diff)
downloadbrdo-3c6066cffaa3bd45508b00c2b1e47677421f38eb.tar.gz
brdo-3c6066cffaa3bd45508b00c2b1e47677421f38eb.tar.bz2
- Patch #45706 by markus: keep up with CSS improvements.
-rw-r--r--modules/book.module2
-rw-r--r--modules/book/book.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module
index 9a0c73628..2ed3f5c9e 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) {
if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) {
$output .= '<li class="expanded">';
$output .= l($node->title, 'node/'. $node->nid);
- $output .= '<ul>'. $tree .'</ul>';
+ $output .= '<ul class="menu">'. $tree .'</ul>';
$output .= '</li>';
}
else {
diff --git a/modules/book/book.module b/modules/book/book.module
index 9a0c73628..2ed3f5c9e 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -578,7 +578,7 @@ function book_tree_recurse($nid, $depth, $children, $unfold = array()) {
if ($tree = book_tree_recurse($node->nid, $depth - 1, $children, $unfold)) {
$output .= '<li class="expanded">';
$output .= l($node->title, 'node/'. $node->nid);
- $output .= '<ul>'. $tree .'</ul>';
+ $output .= '<ul class="menu">'. $tree .'</ul>';
$output .= '</li>';
}
else {