summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-10-25 17:53:30 +0000
committerDries Buytaert <dries@buytaert.net>2006-10-25 17:53:30 +0000
commit6675dbc68c73104b168fbb40ba17bef8e5eaa190 (patch)
tree7c5ed8223d80db1cd10bc442d5b8559a52ca809d
parentd4ce96f1f21f3728cf08040805cc30417a475afc (diff)
downloadbrdo-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.module2
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();