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/user/user.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/user/user.module')
-rw-r--r-- | modules/user/user.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 860c64f28..9d6241e8b 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -379,11 +379,11 @@ function user_block($op = "list", $delta = 0) { } } -function theme_user_list($items, $title = '') { +function theme_user_list($items, $title = NULL) { return theme("theme_item_list",$items, $title); } -function theme_menu_list($items, $title = '') { +function theme_menu_list($items, $title = NULL) { return theme("theme_item_list",$items, $title); } @@ -874,7 +874,7 @@ function user_delete() { global $edit, $user; if ($edit["confirm"]) { - watchdog(user,"$user->name deactivated her own account."); + watchdog("user","$user->name deactivated her own account."); db_query("UPDATE users SET mail = 'deleted', status = '0' WHERE uid = '%d'", $user->uid); $output .= t("Your account has been deactivated."); } |