From 6325277c64ce119ac2854389678694f4815de8be Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Tue, 29 Mar 2016 13:35:23 +0100 Subject: [PATCH] Bug 16011 reintroduced VERSION variable needs declaration $VERSION reintroduced into External/BakerTaylor.pm but was not declared. Causes tests to fail. Readd VERSION to the package vars Signed-off-by: Jonathan Druart Signed-off-by: Brendan A Gallagher --- C4/External/BakerTaylor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/External/BakerTaylor.pm b/C4/External/BakerTaylor.pm index aa8a4057d6..4450e9b573 100644 --- a/C4/External/BakerTaylor.pm +++ b/C4/External/BakerTaylor.pm @@ -27,7 +27,7 @@ use C4::Debug; use strict; use warnings; -use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); +use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION); use vars qw($user $pass $agent $image_url $link_url); BEGIN { -- 2.39.2