1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

#4490 - Should fix autofill in usersettings (new password)

This commit is contained in:
Moc
2021-04-19 19:29:33 +02:00
parent 4ef740674c
commit f16e2ad340

View File

@@ -173,7 +173,7 @@ class usersettings_shortcodes extends e_shortcode
if(!isset($pref['auth_method']) || $pref['auth_method'] == '' || $pref['auth_method'] == 'e107' || $pref['auth_method'] == '>e107')
{
$options = array('size' => 40, 'title' => LAN_USET_23, 'required' => 0, 'autocomplete' => 'off');
$options = array('size' => 40, 'title' => LAN_USET_23, 'required' => 0, 'autocomplete' => 'new-password');
return e107::getForm()->password('password1', '', 20, $options);
}