@@ -, +, @@ --- installer/onboarding.pl | 6 +++++- koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt | 8 ++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) --- a/installer/onboarding.pl +++ a/installer/onboarding.pl @@ -37,7 +37,7 @@ use Koha::IssuingRules; my $input = new CGI; unless ( C4::Context->preference('Version') ) { - print $input->redirect("/cgi-bin/koha/installer/install.pl"); + print $input->redirect("mainpage.pl"); exit; } @@ -57,6 +57,10 @@ my $schema = Koha::Database->new()->schema(); my @messages; +if ( $op && $op eq 'skip' ) { + print $input->redirect("/cgi-bin/koha/mainpage.pl"); + exit; +} if ( $step == 1 ) { if ( $op eq 'add_validate_library' ) { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt @@ -33,8 +33,8 @@ [% IF ( finish ) %] - [%- metacontent= '10; url=/cgi-bin/koha/installer/onboarding.pl' -%] - + [% END %] [% INCLUDE 'installer-doc-head-close.inc' %] @@ -47,6 +47,10 @@ [% IF ( finish ) %]

Web installer › Installation complete

Congratulations, installation complete

+
+ + +

This page will redirect in 10 seconds. If not, click here to start onboarding process.

[% END %] --