From f15ca8a3b2a1fe73e047a95be84ea152d497cd51 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 16 Oct 2015 08:45:30 +0000 Subject: [PATCH] Bug 15021: Fix scoping variable in tools/batchMod.pl $tagslib is used in subroutines and should be declare as global. Test plan: On the Batch item modification page, all item fields should be listed, not only the title. Signed-off-by: Josef Moravec Works as expected --- tools/batchMod.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/batchMod.pl b/tools/batchMod.pl index af2ae4b..5e586c3 100755 --- a/tools/batchMod.pl +++ b/tools/batchMod.pl @@ -82,7 +82,7 @@ my $itemrecord; my $nextop=""; my @errors; # store errors found while checking data BEFORE saving item. my $items_display_hashref; -my $tagslib = &GetMarcStructure(1); +our $tagslib = &GetMarcStructure(1); my $deleted_items = 0; # Number of deleted items my $deleted_records = 0; # Number of deleted records ( with no items attached ) -- 2.1.4