fixed: email password recovery fields effected by UI level
This commit is contained in:
parent
6812c043f4
commit
b6b23a4163
2 changed files with 16 additions and 13 deletions
|
|
@ -65,6 +65,7 @@
|
||||||
- add: Approval activities now have a better parent class and more
|
- add: Approval activities now have a better parent class and more
|
||||||
flexibility (multiple groups to approve, do on approve)
|
flexibility (multiple groups to approve, do on approve)
|
||||||
- fixed: CS mail retrieval doesn't decode subject properly
|
- fixed: CS mail retrieval doesn't decode subject properly
|
||||||
|
- fixed: email password recovery fields effected by UI level
|
||||||
|
|
||||||
7.5.10
|
7.5.10
|
||||||
- fix: Syntax error in GetCsMail
|
- fix: Syntax error in GetCsMail
|
||||||
|
|
|
||||||
|
|
@ -1015,21 +1015,23 @@ sub emailResetPassword {
|
||||||
value => "$passwordRecoveryToken",
|
value => "$passwordRecoveryToken",
|
||||||
);
|
);
|
||||||
|
|
||||||
$f->password(
|
$f->password(
|
||||||
name=>"newpassword",
|
name => "newpassword",
|
||||||
label=> $i18n->get('new password label', 'AuthWebGUI'),
|
label => $i18n->get('new password label', 'AuthWebGUI'),
|
||||||
hoverHelp=> $i18n->get('new password help', 'AuthWebGUI'),
|
hoverHelp => $i18n->get('new password help', 'AuthWebGUI'),
|
||||||
);
|
uiLevel => 0,
|
||||||
|
);
|
||||||
|
|
||||||
$f->password(
|
$f->password(
|
||||||
name=>"newpwdverify",
|
name => "newpwdverify",
|
||||||
label => $i18n->get('new password verify', 'AuthWebGUI'),
|
label => $i18n->get('new password verify', 'AuthWebGUI'),
|
||||||
hoverHelp=> $i18n->get('new password verify help', 'AuthWebGUI'),
|
hoverHelp => $i18n->get('new password verify help', 'AuthWebGUI'),
|
||||||
);
|
uiLevel => 0,
|
||||||
|
);
|
||||||
|
|
||||||
$f->submit(
|
$f->submit(
|
||||||
value => 'submit'
|
value => 'submit'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue