From 8c5330b2b09d5110b58b7f9c3f904ce4fd5776e8 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 7 May 2015 12:47:55 +0200 Subject: [PATCH] Bug 14165: Typo in PerlDependencies Content-Type: text/plain; charset=utf-8 Dependency PDF::FromHTML should be listed as required. See mainpage.pl line 32 (using Koha::Borrower::Discharge). Test plan: If you do not have this dependency, verify that accessing the staff client already results in a software error (Cannot locate PDF/FromHTML.pm). Run koha_perl_deps.pl -m -r without this patch. FromHTML is not listed. Run it with this patch. FromHTML is listed now. --- 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 4b2067e..819db63 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -729,7 +729,7 @@ our $PERL_DEPS = { }, 'PDF::FromHTML' => { 'usage' => 'Discharge generation', - 'required' => '0', + 'required' => '1', 'min_ver' => '0.31', }, }; -- 1.7.10.4