Skip to content
Snippets Groups Projects
Commit 7b3674bd authored by Christopher Smith's avatar Christopher Smith
Browse files

add html5 'email' type to the user manager forms

parent 71422fc8
No related branches found
No related tags found
No related merge requests found
......@@ -311,6 +311,9 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
if($name == 'userpass'){
$fieldtype = 'password';
$autocomp = 'autocomplete="off"';
}elseif($name == 'usermail'){
$fieldtype = 'email';
$autocomp = '';
}else{
$fieldtype = 'text';
$autocomp = '';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment