Bugzilla – Attachment 90739 Details for
Bug 21073
Improve plugin performance
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21073: (QA follow-up) Avoid unnecessary unless/else construct
Bug-21073-QA-follow-up-Avoid-unnecessary-unlessels.patch (text/plain), 1.09 KB, created by
Kyle M Hall (khall)
on 2019-06-18 12:58:55 UTC
(
hide
)
Description:
Bug 21073: (QA follow-up) Avoid unnecessary unless/else construct
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-06-18 12:58:55 UTC
Size:
1.09 KB
patch
obsolete
>From 7db133c2430ab2d1832cea55d73c07f3249e1bb5 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 17 Jun 2019 08:18:48 -0300 >Subject: [PATCH] Bug 21073: (QA follow-up) Avoid unnecessary unless/else > construct > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > plugins/plugins-upload.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/plugins/plugins-upload.pl b/plugins/plugins-upload.pl >index 2675d8e149..c849942c47 100755 >--- a/plugins/plugins-upload.pl >+++ b/plugins/plugins-upload.pl >@@ -86,9 +86,9 @@ if ($plugins_enabled) { > $template->param( ERRORS => [ \%errors ] ); > output_html_with_http_headers $input, $cookie, $template->output; > exit; >- } else { >- Koha::Plugins->new()->InstallPlugins(); > } >+ >+ Koha::Plugins->new()->InstallPlugins(); > } > } elsif ( ( $op eq 'Upload' ) && !$uploadfile ) { > warn "Problem uploading file or no file uploaded."; >-- >2.20.1 (Apple Git-117)
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 21073
:
76955
|
76956
|
76957
|
76958
|
76973
|
88379
|
88380
|
88381
|
89247
|
89251
|
89252
|
89255
|
89256
|
89272
|
89273
|
89274
|
89275
|
89276
|
89277
|
89278
|
89279
|
89786
|
89800
|
89801
|
89802
|
89803
|
89804
|
89805
|
89806
|
89807
|
89808
|
90630
|
90631
|
90650
|
90651
|
90652
|
90653
|
90654
|
90655
|
90656
|
90657
|
90658
|
90659
|
90660
|
90661
|
90662
|
90663
|
90664
|
90724
|
90725
|
90726
|
90727
|
90728
|
90729
|
90730
|
90731
|
90732
|
90733
|
90734
|
90735
|
90736
|
90737
|
90738
| 90739 |
90759
|
90816