From 27c6cb81e2fa26a1af580bd444ac539534d15bda 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 --- 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.5.5