type email for email field in add user form

This commit is contained in:
Tobias Diekershoff 2015-01-24 09:30:44 +01:00
parent f3d49cbfa8
commit 8b558eb7ea
1 changed files with 1 additions and 1 deletions

View File

@ -1000,7 +1000,7 @@ function admin_page_users(&$a){
'$users' => $users,
'$newusername' => array('new_user_name', t("Name"), '', t("Name of the new user.")),
'$newusernickname' => array('new_user_nickname', t("Nickname"), '', t("Nickname of the new user.")),
'$newuseremail' => array('new_user_email', t("Email"), '', t("Email address of the new user.")),
'$newuseremail' => array('new_user_email', t("Email"), '', t("Email address of the new user."), '', '', 'email'),
));
$o .= paginate($a);
return $o;