From 01f69f2dd0efff3dfd88a9c42f297e8bb98f9673 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 --- 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 aa8a405..4450e9b 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.7.0