From 4f3cd07f428b6fba3818465a4389cdf9b041eb8e Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Tue, 10 Jul 2012 08:20:09 +0200 Subject: [PATCH] Bug 7411: Follop-up: Add Text::Unaccent to PerlDependencies.pm Adds new dependency Text::Unaccent to PerlDependencies.pm Module is used currently to remove diacricits from automatically created userid (.) in the patron module. Test scenario: 1. open About Koha > Perl modules 2. verify that Text::Unaccent is there Signed-off-by: Dobrica Pavlinusic --- C4/Installer/PerlDependencies.pm | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index cc10c9a..d5e9326 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -577,6 +577,11 @@ our $PERL_DEPS = { 'Test::Strict' => { 'usage' => 'Core', 'required' => '0.14', + }, + 'Text::Unaccent' => { + 'usage' => 'Core', + 'required' => '1', + 'min_ver' => '1.08', } }; -- 1.7.2.5