Bugzilla – Attachment 91544 Details for
Bug 23310
Noisy Koha::Biblio
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23310: Reduce noise in Koha::Biblio
Bug-23310-Reduce-noise-in-KohaBiblio.patch (text/plain), 1.62 KB, created by
David Nind
on 2019-07-16 10:23:20 UTC
(
hide
)
Description:
Bug 23310: Reduce noise in Koha::Biblio
Filename:
MIME Type:
Creator:
David Nind
Created:
2019-07-16 10:23:20 UTC
Size:
1.62 KB
patch
obsolete
>From b4c8a7c761a90b5224f6b68deb61f0747a4d80f2 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Fri, 12 Jul 2019 01:30:47 +0000 >Subject: [PATCH] Bug 23310: Reduce noise in Koha::Biblio > >The use of uninitialized value flooding plack-error >can get rather distracting and annoying. >By using "// q{}" after each of the subfield() calls >this eliminates the problem > >TEST PLAN >--------- >vertical break where you stop your cut-and-paste. >This test should be repeatable with cut-and-paste >easily. > >restart_all >kshell > >prove t/db_dependent/Koha/Biblio.t >-- may strangely be quiet. > >prove t/db_dependent/Koha/Biblios.t t/db_dependent/Koha/Biblio.t >-- should be noisy. > >prove t/db_dependent/Koha/Biblio.t >-- will always be noisy now. > >exit >git bz apply 23310 > >restart_all >kshell > >prove t/db_dependent/Koha/Biblio.t >-- will be quiet. > >prove t/db_dependent/Koha/Biblios.t t/db_dependent/Koha/Biblio.t >-- will be quiet. > >prove t/db_dependent/Koha/Biblio.t >-- will be quiet. > >qa -v 2 -c 1 > >Signed-off-by: David Nind <david@davidnind.com> >--- > Koha/Biblio.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm >index f38a101e27..ce472a7f58 100644 >--- a/Koha/Biblio.pm >+++ b/Koha/Biblio.pm >@@ -579,7 +579,7 @@ sub get_coins { > push @authors, $au; > } > } >- $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' ); >+ $title = $record->field('245')->as_string('ab'); > if ($titletype eq 'a') { > $pubyear = $record->field('008') || ''; > $pubyear = substr($pubyear->data(), 7, 4) if $pubyear; >-- >2.11.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 23310
:
91495
|
91496
|
91497
|
91544
|
91549