From db568fdee571e0dff1cd456421ba3a02e3fafc5c Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Wed, 11 Feb 2009 11:44:12 -0500 Subject: [PATCH] kohabug 2955 GetMarcFromKohaField now requires $framework Failure to pass the $framework parameter by barcode.pl causes GetMarcFromKohaField to return 0,0 which breaks the value builder. The patch submitted corrects this. This patch is build against the current 3.1.x HEAD, however, this bug also affects the 3.0.x codebase and should be applied there as well. fbcbug 4 Signed-off-by: Galen Charlton --- cataloguing/value_builder/barcode.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cataloguing/value_builder/barcode.pl b/cataloguing/value_builder/barcode.pl index cfa3b15c3c..13bb57142e 100755 --- a/cataloguing/value_builder/barcode.pl +++ b/cataloguing/value_builder/barcode.pl @@ -75,8 +75,8 @@ sub plugin_javascript { my $date = "$year"; - my ($tag,$subfield) = GetMarcFromKohaField("items.barcode"); - my ($loctag,$locsubfield) = GetMarcFromKohaField("items.homebranch"); + my ($tag,$subfield) = GetMarcFromKohaField("items.barcode",""); + my ($loctag,$locsubfield) = GetMarcFromKohaField("items.homebranch",""); my $nextnum; my $query; -- 2.20.1