diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-02 20:44:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-02 20:44:14 +0000 |
commit | 54459cc01a126a921f2ee7bec1939764c75501a4 (patch) | |
tree | 56a271b258b6240808763144473e0e31217f47ef /modules/node/node.module | |
parent | 8a95b9b87e8ecef9795c75342ce94e360caa556c (diff) | |
download | brdo-54459cc01a126a921f2ee7bec1939764c75501a4.tar.gz brdo-54459cc01a126a921f2ee7bec1939764c75501a4.tar.bz2 |
- Fixed the function prototypes of the newly introduced theme_user_list(),
theme_node_list(), and theme_menu_list(). This will fix the excessive
gap between lists and avoids generating empty <b></b> constructs.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index f45f17002..5c0c884ca 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -37,8 +37,8 @@ function node_title_list($result, $title = NULL) { return theme("theme_node_list", $items, $title); } -function theme_node_list($items, $title) { - return theme("theme_item_list",$items,$title); +function theme_node_list($items, $title = NULL) { + return theme("theme_item_list", $items, $title); } // Update the 'last viewed' timestamp of the specified node for current user. |