From f28d0ba6bda24647a9a9c389c6cae34bb69b734c Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 20 Feb 2019 19:55:36 +0000 Subject: [PATCH] Bug 18251: (follow-up) fix rebase error --- opac/sco/sco-main.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl index dcb4c9278b..fdb26b2b6b 100755 --- a/opac/sco/sco-main.pl +++ b/opac/sco/sco-main.pl @@ -221,12 +221,12 @@ elsif ( $patron && ( $op eq 'checkout' || $op eq 'renew' ) ) { } AddIssue( $borrower, $barcode ); + $template->param( issued => 1 ); push @newissueslist, $barcode; if ( $hold_existed ) { my $dtf = Koha::Database->new->schema->storage->datetime_parser; $template->param( - issued => 1, # If the hold existed before the check in, let's confirm that the charge line exists # Note that this should not be needed but since we do not have proper exception handling here we do it this way patron_has_hold_fee => Koha::Account::Lines->search( -- 2.11.0