Bugzilla – Attachment 70912 Details for
Bug 20088
Use of uninitialized value in array element in svc/holds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20088: Fix uninitialized warning from svc/holds
Bug-20088-Fix-uninitialized-warning-from-svcholds.patch (text/plain), 1.20 KB, created by
Marcel de Rooy
on 2018-01-25 11:16:57 UTC
(
hide
)
Description:
Bug 20088: Fix uninitialized warning from svc/holds
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2018-01-25 11:16:57 UTC
Size:
1.20 KB
patch
obsolete
>From c45936f944c45821f79e143e467337d3c933e741 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Thu, 25 Jan 2018 12:01:30 +0100 >Subject: [PATCH] Bug 20088: Fix uninitialized warning from svc/holds >Content-Type: text/plain; charset=utf-8 > >Use of uninitialized value in array element at svc/holds line 56. > >Test plan: >Check if the warn is no longer in the logs; the warning is triggered by >an ajax call from the circulation template in staff. >--- > svc/holds | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/svc/holds b/svc/holds >index 5c0ed35..062109d 100755 >--- a/svc/holds >+++ b/svc/holds >@@ -54,8 +54,8 @@ my $borrowernumber = $input->param('borrowernumber'); > my $offset = $input->param('iDisplayStart'); > my $results_per_page = $input->param('iDisplayLength'); > my $sorting_direction = $input->param('sSortDir_0') || 'desc'; >-my $sorting_column = $sort_columns[ $input->param('iSortCol_0') ] >- || 'reservedate'; >+my $iSortCol = $input->param('iSortCol_0') // 0; >+my $sorting_column = $sort_columns[$iSortCol] // 'reservedate'; > > binmode STDOUT, ":encoding(UTF-8)"; > print $input->header( -type => 'text/plain', -charset => 'UTF-8' ); >-- >2.1.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 20088
:
70912
|
70922
|
70972