Bugfix: [ 1000205 ] Password Recovery Doesn't Work
This commit is contained in:
parent
9751ed0410
commit
33339679ad
2 changed files with 3 additions and 1 deletions
|
|
@ -24,6 +24,8 @@
|
||||||
WebGUI::Wobject::WSClient::www_view()
|
WebGUI::Wobject::WSClient::www_view()
|
||||||
- Added write permission checks to WebGUI::Template.
|
- Added write permission checks to WebGUI::Template.
|
||||||
- Added Export Page functionality.
|
- Added Export Page functionality.
|
||||||
|
- bugfix: Loginbox didn't support encrypt login.
|
||||||
|
- Bugfix: [ 1000205 ] Password Recovery Doesn't Work
|
||||||
|
|
||||||
6.1.1
|
6.1.1
|
||||||
- bugfix [ 991313 ] Manage Translations doesn't work
|
- bugfix [ 991313 ] Manage Translations doesn't work
|
||||||
|
|
|
||||||
|
|
@ -384,7 +384,7 @@ sub new {
|
||||||
sub recoverPassword {
|
sub recoverPassword {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
return $self->displayLogin if($self->userId != 1);
|
return $self->displayLogin if($self->userId != 1);
|
||||||
my $template = 'AuthWebGUI/Recovery';
|
my $template = 'Auth/WebGUI/Recovery';
|
||||||
my $vars;
|
my $vars;
|
||||||
$vars->{title} = WebGUI::International::get(71);
|
$vars->{title} = WebGUI::International::get(71);
|
||||||
$vars->{'recover.form.header'} = "\n\n".WebGUI::Form::formHeader({});
|
$vars->{'recover.form.header'} = "\n\n".WebGUI::Form::formHeader({});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue