Bugzilla – Attachment 34282 Details for
Bug 13296
error when using z3950 with UNIMARC authorities
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13296: (follow-up) permit grep on AUTHUNIMARC
Bug-13296-follow-up-permit-grep-on-AUTHUNIMARC.patch (text/plain), 1.65 KB, created by
Jonathan Druart
on 2014-12-10 15:16:47 UTC
(
hide
)
Description:
Bug 13296: (follow-up) permit grep on AUTHUNIMARC
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2014-12-10 15:16:47 UTC
Size:
1.65 KB
patch
obsolete
>From d23493b82643c39a3dae6c85e395ceebaf90db0a Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 10 Dec 2014 16:15:26 +0100 >Subject: [PATCH] Bug 13296: (follow-up) permit grep on AUTHUNIMARC > >I would prefer not to hide this "stuff". > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > C4/Breeding.pm | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > >diff --git a/C4/Breeding.pm b/C4/Breeding.pm >index d1dbbcb..f870ec6 100644 >--- a/C4/Breeding.pm >+++ b/C4/Breeding.pm >@@ -430,9 +430,8 @@ sub ImportBreedingAuth { > my $batch_id = GetZ3950BatchId($filename); > my $searchbreeding = $dbh->prepare("select import_record_id from import_auths where control_number=? and authorized_heading=?"); > >-# $encoding = C4::Context->preference("marcflavour") unless $encoding; >- my $marc_type = C4::Context->preference('marcflavour'); >- $marc_type .= 'AUTH' if ($marc_type eq 'UNIMARC'); >+ my $marcflavour = C4::Context->preference('marcflavour'); >+ my $marc_type = $marcflavour eq 'UNIMARC' ? 'AUTHUNIMARC' : $marcflavour; > > # fields used for import results > my $imported=0; >@@ -545,8 +544,8 @@ sub Z3950SearchAuth { > my $query; > my $nterms=0; > >- my $marc_type = C4::Context->preference('marcflavour'); >- $marc_type .= 'AUTH' if ($marc_type eq 'UNIMARC'); >+ my $marcflavour = C4::Context->preference('marcflavour'); >+ my $marc_type = $marcflavour eq 'UNIMARC' ? 'AUTHUNIMARC' : $marcflavour; > > if ($nameany) { > $query .= " \@attr 1=1002 \"$nameany\" "; #Any name (this includes personal, corporate, meeting/conference authors, and author names in subject headings) >-- >2.1.0
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 13296
:
33675
|
34281
|
34282
|
34283
|
34531
|
34532