Bugzilla – Attachment 141611 Details for
Bug 31737
Undef warnings around unseen_renewals_allowed in smart-rules.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31737: Fix undef warnings around unseen_renewals_allowed in smart-rules.pl
Bug-31737-Fix-undef-warnings-around-unseenrenewals.patch (text/plain), 1.48 KB, created by
Slava Shishkin
on 2022-10-11 16:02:50 UTC
(
hide
)
Description:
Bug 31737: Fix undef warnings around unseen_renewals_allowed in smart-rules.pl
Filename:
MIME Type:
Creator:
Slava Shishkin
Created:
2022-10-11 16:02:50 UTC
Size:
1.48 KB
patch
obsolete
>From 29aff31f31b1d8b8a98b992c99e8080d776ee346 Mon Sep 17 00:00:00 2001 >From: Slava Shishkin <slavashishkin@gmail.com> >Date: Tue, 11 Oct 2022 18:18:23 +0300 >Subject: [PATCH] Bug 31737: Fix undef warnings around unseen_renewals_allowed > in smart-rules.pl > >Trivial fix. > >To reproduce: >1. Create or edit a rule on /cgi-bin/koha/admin/smart-rules.pl - i.e. submit the form (make POST request) >2. Notice the mentioned above warning in plack-intranet-error.log >3. Apply the patch. >4. Repeat step 1. >5. That warning in log file should be no more. >--- > admin/smart-rules.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/admin/smart-rules.pl b/admin/smart-rules.pl >index 3583f59884..7c3b5b86ae 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -263,7 +263,7 @@ elsif ($op eq 'add') { > my $maxissueqty = strip_non_numeric( scalar $input->param('maxissueqty') ); > my $maxonsiteissueqty = strip_non_numeric( scalar $input->param('maxonsiteissueqty') ); > my $renewalsallowed = $input->param('renewalsallowed'); >- my $unseen_renewals_allowed = strip_non_numeric( scalar $input->param('unseen_renewals_allowed') ) // q{}; >+ my $unseen_renewals_allowed = defined $input->param('unseen_renewals_allowed') ? strip_non_numeric( scalar $input->param('unseen_renewals_allowed') ) : q{}; > my $renewalperiod = $input->param('renewalperiod'); > my $norenewalbefore = $input->param('norenewalbefore'); > $norenewalbefore = q{} if $norenewalbefore =~ /^\s*$/; >-- >2.35.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 31737
: 141611