View | Details | Raw Unified | Return to bug 20104
Collapse All | Expand All

(-)a/installer/install.pl (-2 / +2 lines)
Lines 93-100 if ( $step && $step == 1 ) { Link Here
93
    $template->param( 'checkmodule' => 1 )
93
    $template->param( 'checkmodule' => 1 )
94
      ; # we start with the assumption that there are no problems and set this to 0 if there are
94
      ; # we start with the assumption that there are no problems and set this to 0 if there are
95
95
96
    unless ( $] >= 5.010000 ) {    # Bug 7375
96
    unless ( $] >= 5.020000 ) {    # Bug 20104
97
        $template->param( problems => 1, perlversion => 1, checkmodule => 0 );
97
        $template->param( problems => 1, perlversion => '5.20', checkmodule => 0 );
98
        $checkmodule = 0;
98
        $checkmodule = 0;
99
    }
99
    }
100
100
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt (-2 / +1 lines)
Lines 70-76 Link Here
70
                        <p>I encountered some problems.</p>
70
                        <p>I encountered some problems.</p>
71
                        <ul>
71
                        <ul>
72
                            [% IF ( perlversion ) %]
72
                            [% IF ( perlversion ) %]
73
                                <li>Your Perl version is out of date. Please upgrade to a newer version of Perl (at least version 5.10).</li>
73
                                <li>Your Perl version is out of date. Please upgrade to a newer version of Perl (at least version [% perlversion %]).</li>
74
                            [% END %]
74
                            [% END %]
75
                        </ul>
75
                        </ul>
76
                    [% END %]
76
                    [% END %]
77
- 

Return to bug 20104