Bugzilla – Attachment 159484 Details for
Bug 34977
Allow to delete multiple patron lists at once
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34977: (QA follow-up) Tidy code
Bug-34977-QA-follow-up-Tidy-code.patch (text/plain), 1.09 KB, created by
Salah Ghedda
on 2023-12-01 20:17:15 UTC
(
hide
)
Description:
Bug 34977: (QA follow-up) Tidy code
Filename:
MIME Type:
Creator:
Salah Ghedda
Created:
2023-12-01 20:17:15 UTC
Size:
1.09 KB
patch
obsolete
>From 2013ca325c3656ddbe3d964c98ddfabd17c4cc50 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 3 Nov 2023 12:10:42 -0400 >Subject: [PATCH] Bug 34977: (QA follow-up) Tidy code > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > patron_lists/delete.pl | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/patron_lists/delete.pl b/patron_lists/delete.pl >index e2b34abc90..e7c227ea1f 100755 >--- a/patron_lists/delete.pl >+++ b/patron_lists/delete.pl >@@ -36,15 +36,15 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > } > ); > >-my $id = $cgi->param('patron_list_id'); >+my $id = $cgi->param('patron_list_id'); > my @lists_ids = $cgi->multi_param('patron_lists_ids'); > >-if (defined $id && $id ne '') { >- DelPatronList({ patron_list_id => $id }); >+if ( defined $id && $id ne '' ) { >+ DelPatronList( { patron_list_id => $id } ); > } > if (@lists_ids) { > foreach my $list_id (@lists_ids) { >- DelPatronList({ patron_list_id => $list_id }); >+ DelPatronList( { patron_list_id => $list_id } ); > } > } > >-- >2.34.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 34977
:
156553
|
156554
|
156562
|
158349
|
158350
|
159483
| 159484