From bf40b5336305d65f1c3664e1d95e5e65a86e0a6f 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: Henri-Damien LAURENT --- 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.39.5