Bugzilla – Attachment 30305 Details for
Bug 12674
GetMarcISSN should not return empty ISSN
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12674: GetMarcISSN should not return empty ISSN
Bug-12674-GetMarcISSN-should-not-return-empty-ISSN.patch (text/plain), 1.00 KB, created by
Tomás Cohen Arazi (tcohen)
on 2014-07-29 19:16:28 UTC
(
hide
)
Description:
Bug 12674: GetMarcISSN should not return empty ISSN
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2014-07-29 19:16:28 UTC
Size:
1.00 KB
patch
obsolete
>From 002403aea07d3ea8f92d9fa5da3088c3be03d8c8 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Tue, 29 Jul 2014 16:12:52 -0300 >Subject: [PATCH] Bug 12674: GetMarcISSN should not return empty ISSN > >This patch makes GetMarcISSN test for empty subfield before pushing to the >result array. > >To test: >- Run the regression test >=> FAILS for all MARC flavours >- Apply the patch >- Run the regression test >=> SUCCESS: tests pass >- Sign off > >Sponsored-by: Universidad Nacional de Cordoba >--- > C4/Biblio.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/C4/Biblio.pm b/C4/Biblio.pm >index d465cf6..ea78deb 100644 >--- a/C4/Biblio.pm >+++ b/C4/Biblio.pm >@@ -1746,7 +1746,8 @@ sub GetMarcISSN { > } > my @marcissns; > foreach my $field ( $record->field($scope) ) { >- push @marcissns, $field->subfield( 'a' ); >+ push @marcissns, $field->subfield( 'a' ) >+ if ( $field->subfield( 'a' ) ne "" ); > } > return \@marcissns; > } # end GetMarcISSN >-- >1.9.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 12674
:
30304
|
30305
|
31284
|
31285
|
31287
|
31288