From ed2c2213a72f56236a189deba48ca8fa96acb333 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 11 Jul 2016 12:57:29 -0300 Subject: [PATCH] Bug 15131: Make SCO use the new syspref. This patch just makes SCO use the new syspref (AllowItemsOnHoldCheckoutSCO) instead of the old one, thus making it configurable, separate from the non-SCO syspref. Sponsored-by: NEKLS Signed-off-by: George Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- opac/sco/sco-main.pl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl index 0a59d3b0c6..6d2eb57be5 100755 --- a/opac/sco/sco-main.pl +++ b/opac/sco/sco-main.pl @@ -31,8 +31,7 @@ # # FIXME: inputfocus not really used in TMPL -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use Digest::MD5 qw(md5_base64); @@ -143,7 +142,7 @@ elsif ( $op eq "checkout" ) { $barcode, undef, 0, - C4::Context->preference("AllowItemsOnHoldCheckout") + C4::Context->preference("AllowItemsOnHoldCheckoutSCO") ); } $confirm_required = scalar keys %$needconfirm; @@ -232,7 +231,7 @@ if ($borrower->{cardnumber}) { $it->{'barcode'}, undef, 0, - C4::Context->preference("AllowItemsOnHoldCheckout") + C4::Context->preference("AllowItemsOnHoldCheckoutSCO") ); $it->{'norenew'} = 1 if $renewokay->{'NO_MORE_RENEWALS'}; $it->{date_due} = $it->{date_due_sql}; -- 2.11.4.GIT