Bugzilla – Attachment 87489 Details for
Bug 22648
Typo in SQL in smart-rules.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22648: Fix typo in SQL in smart-rules.pl
Bug-22648-Fix-typo-in-SQL-in-smart-rulespl.patch (text/plain), 1.46 KB, created by
Martin Renvoize (ashimema)
on 2019-04-08 08:54:34 UTC
(
hide
)
Description:
Bug 22648: Fix typo in SQL in smart-rules.pl
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-04-08 08:54:34 UTC
Size:
1.46 KB
patch
obsolete
>From 16249f5067b95b7e4d493079a7739ea0ac8a5bf9 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sat, 6 Apr 2019 10:19:14 +0000 >Subject: [PATCH] Bug 22648: Fix typo in SQL in smart-rules.pl > >Fixes 2 SQL statements for setting the maximum >number of checkouts possible. > >To test: >- In 18.11 >- Verify that setting Default checkout, hold and return policy works >- Verfiy that setting Default checkout, ohld and return policy by > patron category works > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > admin/smart-rules.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/admin/smart-rules.pl b/admin/smart-rules.pl >index fcb5b7efb1..5cba4e2152 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -317,7 +317,7 @@ elsif ($op eq "add-branch-cat") { > my $sth_update = $dbh->prepare(q| > UPDATE default_circ_rules > SET maxissueqty = ?, >- maxonsiteissueqty = ?, >+ maxonsiteissueqty = ? > |); > > $sth_search->execute(); >@@ -349,7 +349,7 @@ elsif ($op eq "add-branch-cat") { > my $sth_update = $dbh->prepare(q| > UPDATE default_borrower_circ_rules > SET maxissueqty = ?, >- maxonsiteissueqty = ?, >+ maxonsiteissueqty = ? > WHERE categorycode = ? > |); > $sth_search->execute($categorycode); >-- >2.20.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 22648
:
87469
| 87489