diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-25 17:53:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-25 17:53:30 +0000 |
commit | 6675dbc68c73104b168fbb40ba17bef8e5eaa190 (patch) | |
tree | 7c5ed8223d80db1cd10bc442d5b8559a52ca809d | |
parent | d4ce96f1f21f3728cf08040805cc30417a475afc (diff) | |
download | brdo-6675dbc68c73104b168fbb40ba17bef8e5eaa190.tar.gz brdo-6675dbc68c73104b168fbb40ba17bef8e5eaa190.tar.bz2 |
- Patch #62628 by imagine et al: added missing element in user.module.
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index fdabe95d4..90219cf12 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1639,7 +1639,7 @@ function user_admin_access_add($mask = NULL, $type = NULL) { * Menu callback: delete an access rule */ function user_admin_access_delete_confirm($aid = 0) { - $access_types = array('user' => t('username'), 'mail' => t('e-mail')); + $access_types = array('user' => t('username'), 'mail' => t('e-mail'), 'host' => t('host')); $edit = db_fetch_object(db_query('SELECT aid, type, status, mask FROM {access} WHERE aid = %d', $aid)); $form = array(); |