diff options
Diffstat (limited to 'modules/user/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(); |