From d20072c7c38f76a77b7fd600d1db787a898f6f36 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Tue, 25 Aug 2009 16:06:57 +0200 Subject: [PATCH] [followup](bug #3370) export function and fix return this add GetRecordValue in exported functions, and made it to return a ref. --- C4/Biblio.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 22761b29e9..27f1d21d99 100755 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -63,6 +63,7 @@ BEGIN { &GetBiblioItemByBiblioNumber &GetBiblioFromItemNumber + &GetRecordValue &GetFieldMapping &SetFieldMapping &DeleteFieldMapping @@ -508,7 +509,7 @@ sub GetRecordValue { } } - return @result; + return \@result; } =head2 SetFieldMapping -- 2.39.5