Use redirection message in page title (#80)

This commit is contained in:
Clément Oudot 2010-06-01 10:11:35 +00:00
parent bb9c7435cc
commit d7cee9a4f9

View File

@ -1616,15 +1616,15 @@ sub autoPost {
} }
"; ";
my $message =
&Lemonldap::NG::Portal::_i18n::msg( PM_REDIRECTION,
$ENV{HTTP_ACCEPT_LANGUAGE} );
# Print page # Print page
print $self->header(); print $self->header();
print $self->start_html( -style => { -code => $css } ); print $self->start_html( -title => $message, -style => { -code => $css } );
print $self->h1( print $self->h1($message);
&Lemonldap::NG::Portal::_i18n::msg( PM_REDIRECTION,
$ENV{HTTP_ACCEPT_LANGUAGE}
)
);
print $self->start_form( -action => $url ); print $self->start_form( -action => $url );