From 6d45693c6f57488f19f306904b96733bb79f5bfb Mon Sep 17 00:00:00 2001 From: Bernardo Gonzalez Kriegel Date: Fri, 21 Dec 2012 19:22:45 -0300 Subject: [PATCH] Bug 9315: Bad version of String::Random reported by koha_perl_deps.pl This patch fixes version number of String::Random as reported by koha_perl_deps.pl To test (on master) 1) run perl koha_perl_deps.pl -u, it will show as required String::Random version 1.4 2) apply the patch 3) run koha_perl_deps.pl -u, it will show (or not) as required String::Random version 0.22 Signed-off-by: Owen Leonard Patch works correctly according to the test plan. Signed-off-by: Jonathan Druart --- C4/Installer/PerlDependencies.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index 16144f9..41fa8db 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -632,7 +632,7 @@ our $PERL_DEPS = { 'String::Random' => { 'usage' => 'OpacSelfRegistration', 'required' => '0', - 'min_ver' => '1.4', + 'min_ver' => '0.22', }, }; -- 1.7.10.4