diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-15 11:16:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-15 11:16:39 +0000 |
commit | 9979aceab035616297b1ba95ec33c9905a4fed2b (patch) | |
tree | 37679df887bb271ddee3ba22f91a305c9ad6b40f /modules/user.module | |
parent | c13abe16555a8a7f70021dae0cf9f3dd20e6c83d (diff) | |
download | brdo-9979aceab035616297b1ba95ec33c9905a4fed2b.tar.gz brdo-9979aceab035616297b1ba95ec33c9905a4fed2b.tar.bz2 |
- Patch #12783 by Stefan: various small consistency/usability improvements.
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module index d6ee673df..390eb075e 100644 --- a/modules/user.module +++ b/modules/user.module @@ -662,7 +662,7 @@ function user_menu($may_cache) { 'callback' => 'user_admin', 'access' => $access); $items[] = array('path' => 'admin/user/list', 'title' => t('list'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10); - $items[] = array('path' => 'admin/user/create', 'title' => t('add'), + $items[] = array('path' => 'admin/user/create', 'title' => t('add user'), 'callback' => 'user_admin', 'access' => $access, 'type' => MENU_LOCAL_TASK); $items[] = array('path' => 'admin/user/configure', 'title' => t('configure'), @@ -1549,7 +1549,7 @@ function user_admin_account() { $pager = theme('pager', NULL, 50, 0, tablesort_pager()); if (!empty($pager)) { - $rows[] = array(array('data' => $pager, 'colspan' => 6)); + $rows[] = array(array('data' => $pager, 'colspan' => '6')); } return theme('table', $header, $rows); } |