Revert "Bug 20104: Update minimum version of Perl to 5.20"
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 19 Apr 2018 12:09:31 +0000 (09:09 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 19 Apr 2018 15:32:23 +0000 (12:32 -0300)
This reverts commit 4218875ec039dc375124f969caea1624399c21a4.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
installer/install.pl
koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt

index c132939..a7aaa28 100755 (executable)
@@ -93,8 +93,8 @@ if ( $step && $step == 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.020000 ) {    # Bug 20104
-        $template->param( problems => 1, perlversion => '5.20', checkmodule => 0 );
+    unless ( $] >= 5.010000 ) {    # Bug 7375
+        $template->param( problems => 1, perlversion => 1, checkmodule => 0 );
         $checkmodule = 0;
     }
 
index 7cebfa8..806f28e 100644 (file)
@@ -70,7 +70,7 @@
                         <p>I encountered some problems.</p>
                         <ul>
                             [% IF ( perlversion ) %]
-                                <li>Your Perl version is out of date. Please upgrade to a newer version of Perl (at least version [% perlversion %]).</li>
+                                <li>Your Perl version is out of date. Please upgrade to a newer version of Perl (at least version 5.10).</li>
                             [% END %]
                         </ul>
                     [% END %]