Bugzilla – Attachment 93060 Details for
Bug 23627
Koha::Biblio->get_coins too noisy if no 245$b
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23627: Reduce Koha::Biblio->get_coins noise if no 245
Bug-23627-Reduce-KohaBiblio-getcoins-noise-if-no-2.patch (text/plain), 981 bytes, created by
Maryse Simard
on 2019-09-20 20:37:51 UTC
(
hide
)
Description:
Bug 23627: Reduce Koha::Biblio->get_coins noise if no 245
Filename:
MIME Type:
Creator:
Maryse Simard
Created:
2019-09-20 20:37:51 UTC
Size:
981 bytes
patch
obsolete
>From 33e56ea20589b3ec4ed75c916d988472bfe7d774 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 16 Sep 2019 17:22:17 -0300 >Subject: [PATCH] Bug 23627: Reduce Koha::Biblio->get_coins noise if no 245 > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: Maryse Simard <maryse.simard@inlibro.com> >--- > Koha/Biblio.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm >index 0401268..1de0c6f 100644 >--- a/Koha/Biblio.pm >+++ b/Koha/Biblio.pm >@@ -559,7 +559,7 @@ sub get_coins { > push @authors, $au; > } > } >- $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' ); >+ $title = $record->subfield( '245', 'a' ) . ( $record->subfield( '245', 'b' ) // ''); > if ($titletype eq 'a') { > $pubyear = $record->field('008') || ''; > $pubyear = substr($pubyear->data(), 7, 4) if $pubyear; >-- >2.7.4
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 23627
:
92848
|
93060
|
93178