Skip to content

Commit d56574e

Browse files
amulet1ralflang
authored andcommitted
fix: Do not set the value of the second factor input box (Dmitry)
1 parent cdf6d4e commit d56574e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Login.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public function buildLoginParams(): array
4040
$loginparams['horde_secondfactor'] = [
4141
'label' => _("Second Factor"),
4242
'type' => 'password',
43-
'value' => $this->vars->horde_secondfactor,
43+
// 'value' => $this->vars->horde_secondfactor,
44+
'extra' => [ 'autocomplete' => 'off' ],
4445
];
4546
}
4647
return $loginparams;

0 commit comments

Comments
 (0)