diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-02 17:37:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-02 17:37:46 +0000 |
commit | 48b7a5bbe927e5e0126787f0bd1cbcc87b4bd6c3 (patch) | |
tree | c1185f68c17ab290940e4a6ddcf645748f902b86 | |
parent | e8fdcb2c3b5bd12accdee05cc6af404de27f3eb7 (diff) | |
download | brdo-48b7a5bbe927e5e0126787f0bd1cbcc87b4bd6c3.tar.gz brdo-48b7a5bbe927e5e0126787f0bd1cbcc87b4bd6c3.tar.bz2 |
- Patch #253022 by beginner: fixed typo in code comments.
-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 6b524fb32..3d33ce5bc 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -520,7 +520,7 @@ function book_get_flat_menu($book_link) { static $flat = array(); if (!isset($flat[$book_link['mlid']])) { - // Call menu_tree_full_data() to take advantage of the menu system's caching. + // Call menu_tree_all_data() to take advantage of the menu system's caching. $tree = menu_tree_all_data($book_link['menu_name'], $book_link); $flat[$book_link['mlid']] = array(); _book_flatten_menu($tree, $flat[$book_link['mlid']]); |