Bugzilla – Attachment 104636 Details for
Bug 25440
Remove undef and CGI warnings and fix template variables list in circulation rules
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25440: Extra duplicated call to CGI->param method removed
Bug-25440-Extra-duplicated-call-to-CGI-param-metho.patch (text/plain), 1.68 KB, created by
Andrii Nugged
on 2020-05-10 16:08:30 UTC
(
hide
)
Description:
Bug 25440: Extra duplicated call to CGI->param method removed
Filename:
MIME Type:
Creator:
Andrii Nugged
Created:
2020-05-10 16:08:30 UTC
Size:
1.68 KB
patch
obsolete
>From 72e08364511474092775a7c34d357500e4b322e6 Mon Sep 17 00:00:00 2001 >From: Andrew Nugged <nugged@gmail.com> >Date: Sun, 10 May 2020 13:54:29 +0300 >Subject: [PATCH] Bug 25440: Extra duplicated call to CGI->param method removed > >In code CGI param 'no_auto_renewal_after_hard_limit' assigned to >"$no_auto_renewal_after_hard_limit" var, and then just in the next line >again variable "$no_auto_renewal_after_hard_limit" reassigned with >call to same "$input->param('no_auto_renewal_after_hard_limit')". > >Fixed. No logic or results should be changed. >--- > 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 0a2c18873a..6b5a8e9cbd 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -267,7 +267,7 @@ elsif ($op eq 'add') { > my $no_auto_renewal_after = $input->param('no_auto_renewal_after'); > $no_auto_renewal_after = '' if $no_auto_renewal_after =~ /^\s*$/; > my $no_auto_renewal_after_hard_limit = $input->param('no_auto_renewal_after_hard_limit') || ''; >- $no_auto_renewal_after_hard_limit = eval { dt_from_string( $input->param('no_auto_renewal_after_hard_limit') ) } if ( $no_auto_renewal_after_hard_limit ); >+ $no_auto_renewal_after_hard_limit = eval { dt_from_string( $no_auto_renewal_after_hard_limit ) } if ( $no_auto_renewal_after_hard_limit ); > $no_auto_renewal_after_hard_limit = output_pref( { dt => $no_auto_renewal_after_hard_limit, dateonly => 1, dateformat => 'iso' } ) if ( $no_auto_renewal_after_hard_limit ); > my $reservesallowed = strip_non_numeric($input->param('reservesallowed')); > my $holds_per_record = strip_non_numeric($input->param('holds_per_record')); >-- >2.17.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 25440
:
104635
|
104636
|
104637
|
104638
|
104639
|
104640
|
105059
|
105063
|
105985
|
106300
|
106301
|
106302
|
106303
|
106304
|
106305
|
106388