Bugzilla – Attachment 50578 Details for
Bug 16320
Refactor ILSDI_Services.t so it uses TestBuilder
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16320: [QA Follow-up] Remove warnings from ILSDI/Services.pm
Bug-16320-QA-Follow-up-Remove-warnings-from-ILSDIS.patch (text/plain), 2.33 KB, created by
Marcel de Rooy
on 2016-04-22 11:54:07 UTC
(
hide
)
Description:
Bug 16320: [QA Follow-up] Remove warnings from ILSDI/Services.pm
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2016-04-22 11:54:07 UTC
Size:
2.33 KB
patch
obsolete
>From cb479dc1847a5ca6d53d00a3b0037acaf81d4a3a Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Fri, 22 Apr 2016 13:49:21 +0200 >Subject: [PATCH] Bug 16320: [QA Follow-up] Remove warnings from > ILSDI/Services.pm >Content-Type: text/plain; charset=utf-8 > >Removes: >Use of uninitialized value in string eq at /home/koha/kohaclone/C4/ILSDI/Services.pm line 373. >Use of uninitialized value in string eq at /home/koha/kohaclone/C4/ILSDI/Services.pm line 390. >Use of uninitialized value in string eq at /home/koha/kohaclone/C4/ILSDI/Services.pm line 399. >Use of uninitialized value in string eq at /home/koha/kohaclone/C4/ILSDI/Services.pm line 423. > >Test plan: >Run t/db_dependent/ILSDI_Services.t > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > C4/ILSDI/Services.pm | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm >index b1db742..9f5a766 100644 >--- a/C4/ILSDI/Services.pm >+++ b/C4/ILSDI/Services.pm >@@ -370,7 +370,7 @@ sub GetPatronInfo { > delete $borrower->{'password'}; > > # Contact fields management >- if ( $cgi->param('show_contact') eq "0" ) { >+ if ( defined $cgi->param('show_contact') && $cgi->param('show_contact') eq "0" ) { > > # Define contact fields > my @contactfields = ( >@@ -387,7 +387,7 @@ sub GetPatronInfo { > } > > # Fines management >- if ( $cgi->param('show_fines') eq "1" ) { >+ if ( $cgi->param('show_fines') && $cgi->param('show_fines') eq "1" ) { > my @charges; > for ( my $i = 1 ; my @charge = getcharges( $borrowernumber, undef, $i ) ; $i++ ) { > push( @charges, @charge ); >@@ -396,7 +396,7 @@ sub GetPatronInfo { > } > > # Reserves management >- if ( $cgi->param('show_holds') eq "1" ) { >+ if ( $cgi->param('show_holds') && $cgi->param('show_holds') eq "1" ) { > > # Get borrower's reserves > my @reserves = GetReservesFromBorrowernumber( $borrowernumber, undef ); >@@ -420,7 +420,7 @@ sub GetPatronInfo { > } > > # Issues management >- if ( $cgi->param('show_loans') eq "1" ) { >+ if ( $cgi->param('show_loans') && $cgi->param('show_loans') eq "1" ) { > my $issues = GetPendingIssues($borrowernumber); > foreach my $issue ( @$issues ){ > $issue->{'issuedate'} = $issue->{'issuedate'}->strftime('%Y-%m-%d %H:%M'); >-- >1.7.10.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 16320
:
50531
|
50577
|
50578
|
50579
|
50587
|
50588
|
50873