From 57d53d7adbe2628e624b1d7061a9dfbdb18344ff Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 22 May 2017 09:49:05 +0000 Subject: [PATCH] Bug 18642: Add missing dependency for Data::Printer module Test plan: 1) Go to About page -- without patch you can't see Data::Printer listed -- with patch you'll see it 2) uninstall Data::Printer - apt-get remove libdata-printer-perl 3) go to Reports -> Use saved - you'll see ISE 4) install the module again - apt-get install libdata-printer-perl 5) go to Reports -> Use saved - everything should work fine --- C4/Installer/PerlDependencies.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index c4f5409..9a1872a 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -862,6 +862,11 @@ our $PERL_DEPS = { 'required' => '0', 'min_ver' => '0.07', }, + 'Data::Printer' => { + usage => 'Core', + required => 1, + min_ver => '0.35', + }, }; 1; -- 2.1.4