Bugzilla – Attachment 128731 Details for
Bug 29173
Button "replace authority record via Z39/50/SRU" doesn't pre-fill
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29173: (follow-up) add marcflavour preference in conditions
Bug-29173-follow-up-add-marcflavour-preference-in-.patch (text/plain), 2.05 KB, created by
Thibaud Guillot (thibaud_g)
on 2021-12-20 10:57:24 UTC
(
hide
)
Description:
Bug 29173: (follow-up) add marcflavour preference in conditions
Filename:
MIME Type:
Creator:
Thibaud Guillot (thibaud_g)
Created:
2021-12-20 10:57:24 UTC
Size:
2.05 KB
patch
obsolete
>From 737a079f45877ce5a702fbf6eec13e77c55dc494 Mon Sep 17 00:00:00 2001 >From: Thibaud Guillot <thibaud.guillot@biblibre.com> >Date: Mon, 20 Dec 2021 10:54:33 +0000 >Subject: [PATCH] Bug 29173: (follow-up) add marcflavour preference in > conditions > >--- > cataloguing/z3950_auth_search.pl | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-) > >diff --git a/cataloguing/z3950_auth_search.pl b/cataloguing/z3950_auth_search.pl >index d6eab4bf96..c17d60d696 100755 >--- a/cataloguing/z3950_auth_search.pl >+++ b/cataloguing/z3950_auth_search.pl >@@ -31,6 +31,7 @@ use Koha::Authority::Types; > > my $input = CGI->new; > my $dbh = C4::Context->dbh; >+my $marcflavour = C4::Context->preference("marcflavour"); > my $error = $input->param('error'); > my $authid = $input->param('authid') || 0; > >@@ -57,31 +58,31 @@ $page = $input->param('goto_page') if $input->param('changepage_goto'); > my $controlnumber = $input->param('controlnumber'); > > if (! $authorpersonal) { >- if ($authtag == 100) { >+ if ($marcflavour eq 'MARC21' && $authtag == 100) { > $authorpersonal = $authfields->subfield('a'); >- } elsif ($authtag == 200) { >+ } elsif ($marcflavour eq 'UNIMARC' && $authtag == 200) { > $authorpersonal = $authfields->subfield('a'); > } > } > > if (! $authormeetingcon) { >- if ($authtag == 110) { >+ if ($marcflavour eq 'MARC21' && $authtag == 110) { > $authormeetingcon = $authfields->subfield('a'); >- } elsif ($authtag == 210) { >+ } elsif ($marcflavour eq 'UNIMARC' && $authtag == 210) { > $authormeetingcon = $authfields->subfield('a'); > } > } > > if (! $uniformtitle) { >- if ($authtag == 130) { >+ if ($marcflavour eq 'MARC21' && $authtag == 130) { > $uniformtitle = $authfields->subfield('a'); >- } elsif ($authtag == 230) { >+ } elsif ($marcflavour eq 'UNIMARC' && $authtag == 230) { > $uniformtitle = $authfields->subfield('a'); > } > } > > if (! $subject) { >- if ($authtag == 250) { >+ if ($marcflavour eq 'UNIMARC' && $authtag == 250) { > $subject = $authfields->subfield('a'); > } > } >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 29173
:
128378
|
128410
|
128728
|
128730
|
128731
|
128756
|
130192
|
130193
|
130422
|
132443
|
136410
|
136411
|
136440
|
144867
|
144972
|
144983
|
146380
|
146381