Bugzilla – Attachment 144050 Details for
Bug 30794
'Default checkout, hold and return policy' overrides Unlimited holds in 'Default checkout, hold policy by patron category'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30794: Insert blank rule (unlimited) for max_holds
Bug-30794-Insert-blank-rule-unlimited-for-maxholds.patch (text/plain), 1.26 KB, created by
Marcel de Rooy
on 2022-11-18 09:46:29 UTC
(
hide
)
Description:
Bug 30794: Insert blank rule (unlimited) for max_holds
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2022-11-18 09:46:29 UTC
Size:
1.26 KB
patch
obsolete
>From 7accbfd3917470c91407fa8fef03ac4fb5cd3249 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 17 Nov 2022 09:28:39 +0100 >Subject: [PATCH] Bug 30794: Insert blank rule (unlimited) for max_holds >Content-Type: text/plain; charset=utf-8 > >Related to bug 24669, why didn't we use strip_non_numeric for one occurrence? > >Note that there is still a problem, if none of the 3 inputs is filled, >no rule will be created (ie. action ignored) > >Signed-off-by: Andrew Fuerste-Henry <andrewfh@dubcolib.org> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > admin/smart-rules.pl | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > >diff --git a/admin/smart-rules.pl b/admin/smart-rules.pl >index b71179437f..7de8899b28 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -415,8 +415,7 @@ elsif ($op eq "add-branch-cat") { > my $patron_maxonsiteissueqty = $input->param('patron_maxonsiteissueqty'); > $patron_maxonsiteissueqty = strip_non_numeric($patron_maxonsiteissueqty); > my $max_holds = $input->param('max_holds'); >- $max_holds =~ s/\s//g; >- $max_holds = undef if $max_holds !~ /^\d+/; >+ $max_holds = strip_non_numeric($max_holds); > > if ($branch eq "*") { > if ($categorycode eq "*") { >-- >2.30.2
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 30794
:
143984
|
144011
| 144050