Bugzilla – Attachment 46544 Details for
Bug 6657
Making 999 visible in framework duplicates 999 entry and affects index
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 6657: counter-patch
Bug-6657-counter-patch.patch (text/plain), 1.18 KB, created by
Julian Maurice
on 2016-01-12 15:50:52 UTC
(
hide
)
Description:
Bug 6657: counter-patch
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2016-01-12 15:50:52 UTC
Size:
1.18 KB
patch
obsolete
>From d0df46b483734cb6f822ff2f463ed5e0b30a12b5 Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Tue, 12 Jan 2016 16:49:15 +0100 >Subject: [PATCH] Bug 6657: counter-patch > >Replace while by for >--- > C4/Biblio.pm | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > >diff --git a/C4/Biblio.pm b/C4/Biblio.pm >index 11812c7..bea73b2 100644 >--- a/C4/Biblio.pm >+++ b/C4/Biblio.pm >@@ -2487,11 +2487,10 @@ sub TransformHtmlToMarc { > > # creating a new record > my $record = MARC::Record->new(); >- my $i = 0; > my @fields; > my ( $biblionumbertagfield, $biblionumbertagsubfield ) = &GetMarcFromKohaField( "biblio.biblionumber", '' ); > #FIXME This code assumes that the CGI params will be in the same order as the fields in the template; this is no absolute guarantee! >- while ( $params[$i] ) { # browse all CGI params >+ for (my $i = 0; $params[$i]; $i++ ) { # browse all CGI params > my $param = $params[$i]; > my $newfield = 0; > >@@ -2551,7 +2550,6 @@ sub TransformHtmlToMarc { > } > push @fields, $newfield if ($newfield); > } >- $i++; > } > > $record->append_fields(@fields); >-- >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 6657
:
42667
|
44199
|
44869
|
46517
|
46536
|
46537
|
46538
|
46542
|
46543
|
46544
|
46545
|
46547
|
46568
|
46569