From 01a09d51b9a180be9caf85494f7614d46a6330a5 Mon Sep 17 00:00:00 2001
From: MJ Ray <mjr@phonecoop.coop>
Date: Thu, 28 Feb 2013 15:47:27 +0000
Subject: [PATCH] Bug 9734 - String::Random is marked as optional, but C4::Members requires it
jcamins confirmed on IRC it is not optional.
To test:
1) perl koha_perl_deps.pl -a |grep String::Random
2) notice the "No" in the last column - it should be Yes
3) apply patch and repeat same steps, looking for Yes.
Sponsored-by: software.coop
---
C4/Installer/PerlDependencies.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm
index 41fa8db..83ba962 100644
--- a/C4/Installer/PerlDependencies.pm
+++ b/C4/Installer/PerlDependencies.pm
@@ -631,7 +631,7 @@ our $PERL_DEPS = {
},
'String::Random' => {
'usage' => 'OpacSelfRegistration',
- 'required' => '0',
+ 'required' => '1',
'min_ver' => '0.22',
},
};
--
1.7.2.5