When using encrypted logins, do not add the webServerPort from the config file. Fixes bug #12269.
This commit is contained in:
parent
e5ef40f0a4
commit
5314530a3c
4 changed files with 21 additions and 8 deletions
|
|
@ -590,8 +590,10 @@ sub displayLogin {
|
|||
$vars->{title} = $i18n->get(66);
|
||||
my $action;
|
||||
if ($self->session->setting->get("encryptLogin")) {
|
||||
$action = $self->session->url->page(undef,1);
|
||||
$action =~ s/http:/https:/;
|
||||
my $uri = URI->new($session->url->page(undef,1));
|
||||
$uri->scheme('https');
|
||||
$uri->host_port($uri->host);
|
||||
$action = $uri->as_string;
|
||||
}
|
||||
$vars->{'login.form.header'} = WebGUI::Form::formHeader($self->session,{action=>$action});
|
||||
$vars->{'login.form.hidden'} = WebGUI::Form::hidden($self->session,{"name"=>"op","value"=>"auth"});
|
||||
|
|
@ -923,9 +925,10 @@ sub login {
|
|||
$self->session->scratch->delete("redirectAfterLogin");
|
||||
}
|
||||
elsif ($self->session->setting->get('encryptLogin')) {
|
||||
my $currentUrl = $self->session->url->page(undef,1);
|
||||
$currentUrl =~ s/^https:/http:/;
|
||||
$self->session->http->setRedirect($currentUrl);
|
||||
my $currentUrl = URI->new($self->session->url->page(undef,1));
|
||||
$currentUrl->scheme('http');
|
||||
$currentUrl->port($self->session->config->get('webServerPort') || 80);
|
||||
$self->session->http->setRedirect($currentUrl->canonical->as-string);
|
||||
}
|
||||
|
||||
# Get open version tag. This is needed if we want
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ use strict;
|
|||
use WebGUI::Form;
|
||||
use WebGUI::International;
|
||||
use WebGUI::Asset::Template;
|
||||
use URI;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
|
|
@ -96,8 +97,10 @@ sub process {
|
|||
|
||||
my $action;
|
||||
if ($session->setting->get("encryptLogin")) {
|
||||
$action = $session->url->page(undef,1);
|
||||
$action =~ s/http:/https:/;
|
||||
my $uri = URI->new($session->url->page(undef,1));
|
||||
$uri->scheme('https');
|
||||
$uri->host_port($uri->host);
|
||||
$action = $uri->canonical->as_string;
|
||||
}
|
||||
$var{'form.header'} = WebGUI::Form::formHeader($session,{action=>$action})
|
||||
.WebGUI::Form::hidden($session,{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue