From 9c1ccbbf5497e071bb17e554bb2711954bb0b32b Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Tue, 10 Aug 2004 14:32:09 +0000 Subject: Getting rid of parameters which were never passed. --- modules/book.module | 4 ++-- modules/book/book.module | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/book.module b/modules/book.module index da49117ab..a56d2bc8b 100644 --- a/modules/book.module +++ b/modules/book.module @@ -533,7 +533,7 @@ function book_toc_recurse($nid, $indent, $toc, $children, $exclude) { return $toc; } -function book_toc($exclude = 0, $parent = 0, $indent = '', $toc = array()) { +function book_toc($exclude = 0) { $result = db_query('SELECT DISTINCT(n.nid), n.title, b.parent FROM {node} n '. node_access_join_sql() .' INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND '. node_access_where_sql() .' ORDER BY b.weight, n.title'); while ($node = db_fetch_object($result)) { @@ -549,7 +549,7 @@ function book_toc($exclude = 0, $parent = 0, $indent = '', $toc = array()) { $toc[0] = '<'. t('top-level') .'>'; } - $toc = book_toc_recurse($parent, $indent, $toc, $children, $exclude); + $toc = book_toc_recurse(0, '', array(), $children, $exclude); return $toc; } diff --git a/modules/book/book.module b/modules/book/book.module index da49117ab..a56d2bc8b 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -533,7 +533,7 @@ function book_toc_recurse($nid, $indent, $toc, $children, $exclude) { return $toc; } -function book_toc($exclude = 0, $parent = 0, $indent = '', $toc = array()) { +function book_toc($exclude = 0) { $result = db_query('SELECT DISTINCT(n.nid), n.title, b.parent FROM {node} n '. node_access_join_sql() .' INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND '. node_access_where_sql() .' ORDER BY b.weight, n.title'); while ($node = db_fetch_object($result)) { @@ -549,7 +549,7 @@ function book_toc($exclude = 0, $parent = 0, $indent = '', $toc = array()) { $toc[0] = '<'. t('top-level') .'>'; } - $toc = book_toc_recurse($parent, $indent, $toc, $children, $exclude); + $toc = book_toc_recurse(0, '', array(), $children, $exclude); return $toc; } -- cgit v1.2.3