diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-09-01 19:47:31 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-09-05 17:22:03 +0200 |
commit | a2b6a921076731a75a1a41fab0d77afd421a72fc (patch) | |
tree | 9b9a4107ae41bfe082576ff37595412069de47c5 /settings | |
parent | 24977d0fd07ab40564cddae5661a4ae6bbfec7f2 (diff) | |
download | nextcloud-server-a2b6a921076731a75a1a41fab0d77afd421a72fc.tar.gz nextcloud-server-a2b6a921076731a75a1a41fab0d77afd421a72fc.zip |
Disable asking to save password when adding users.
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index d862fa1cadf..eef9b291357 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -17,7 +17,7 @@ $_['subadmingroups'] = array_flip($items); var isadmin = <?php echo $_['isadmin']?'true':'false'; ?>; </script> <div id="controls"> - <form id="newuser"> + <form id="newuser" autocomplete="off"> <input id="newusername" type="text" placeholder="<?php echo $l->t('Name')?>" /> <input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" /> <select |