From 6ef6b279148af23cc5f58e22dc72b26b8d83cba8 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 25 Oct 2021 14:32:07 +0000 Subject: [PATCH] Bug 28453: DO NOT PUSH - FOR MARC21 TESTING ONLY This patch changes the authority type searched by the UNIMARC 210$c plugin from EDITORS to PERSO_NAME in order to try to make it more easily testable by MARC21 users. FOR TESTING ONLY!! Signed-off-by: David Nind --- cataloguing/value_builder/unimarc_field_210c.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cataloguing/value_builder/unimarc_field_210c.pl b/cataloguing/value_builder/unimarc_field_210c.pl index 8e7b837baf..6dde9c2652 100755 --- a/cataloguing/value_builder/unimarc_field_210c.pl +++ b/cataloguing/value_builder/unimarc_field_210c.pl @@ -102,7 +102,7 @@ my ($input) = @_; my $from = $offset + 1; my $to = ( $offset + $resultsperpage > $total ) ? $total : $offset + $resultsperpage; - my $link="../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c.pl&authtypecode=EDITORS&".join("&",map {"value=".$_} @value)."&op=do_search&type=intranet&index=$index"; + my $link="../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c.pl&authtypecode=PERSO_NAME&".join("&",map {"value=".$_} @value)."&op=do_search&type=intranet&index=$index"; $template->param(result => $results) if $results; $template->param('index' => scalar $query->param('index')); -- 2.39.5