Bugzilla – Attachment 40966 Details for
Bug 14436
Noisy warns in C4/Utils/DataTables/Members.pm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14436: Noisy warns in C4/Utils/DataTables/Members.pm
Bug-14436-Noisy-warns-in-C4UtilsDataTablesMembersp.patch (text/plain), 1.40 KB, created by
Jonathan Druart
on 2015-07-13 13:12:39 UTC
(
hide
)
Description:
Bug 14436: Noisy warns in C4/Utils/DataTables/Members.pm
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-07-13 13:12:39 UTC
Size:
1.40 KB
patch
obsolete
>From ae864c3c28bccef5cc670587942ecc4a98bc5256 Mon Sep 17 00:00:00 2001 >From: Aleisha <aleishaamohia@hotmail.com> >Date: Fri, 10 Jul 2015 10:31:53 -0400 >Subject: [PATCH] Bug 14436: Noisy warns in C4/Utils/DataTables/Members.pm > >TEST PLAN >--------- >1) Backup the koha intranet error log. >2) Empty the koha intranet error log. >3) In staff client, go to Patrons > (/cgi-bin/koha/members/members-home.pl) >4) Pick any letter to 'Browse by last name' > -- koha intranet error log now has warns. > -- the one of importance is the uninitalized value. >5) Empty the koha intranet error log. >6) apply this patch >7) Repeat steps 3 & 4. > -- koha intranet error log does not contain the > uninitialized value error. >8) run koha qa test tools. > >Signed-off-by: Indranil Das Gupta (L2C2 Technologies) <indradg@gmail.com> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > C4/Utils/DataTables/Members.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Utils/DataTables/Members.pm b/C4/Utils/DataTables/Members.pm >index bad8e9f..cdaa33f 100644 >--- a/C4/Utils/DataTables/Members.pm >+++ b/C4/Utils/DataTables/Members.pm >@@ -17,7 +17,7 @@ sub search { > my $dt_params = $params->{dt_params}; > > unless ( $searchmember ) { >- $searchmember = $dt_params->{sSearch}; >+ $searchmember = $dt_params->{sSearch} // ''; > } > > my ($iTotalRecords, $iTotalDisplayRecords); >-- >2.1.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 14436
:
40507
|
40799
|
40926
|
40931
| 40966