@@ -, +, @@ - Change the installer script to look for at least 5.10/5.010000 - Change the template to ask for the correct version - Run through the webinstaller on 5.10 or newer and check that there are - Ideally: Run through the webinstaller on an older version than 5.10 and --- installer/install.pl | 2 +- .../prog/en/modules/installer/step1.tt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/installer/install.pl +++ a/installer/install.pl @@ -59,7 +59,7 @@ if ( $step && $step == 1 ) { $template->param( language => 1 ); $template->param( 'checkmodule' => 1 ); # we start with the assumption that there are no problems and set this to 0 if there are - unless ( $] >= 5.008008 ) { # Bug 4505 + unless ( $] >= 5.010000 ) { # Bug 7375 $template->param( problems => 1, perlversion => 1, checkmodule => 0 ); } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt @@ -49,8 +49,8 @@ listed, please inform your systems administrator.

I encountered some problems.

[% END %] --