From f650563874756d1036183de0d305b872be003f4b Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 8 Sep 2009 19:16:43 +1200 Subject: [PATCH] Fixing syntax error --- circ/circulation.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 077639a8b3..bfe18885d4 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -278,6 +278,7 @@ if ($borrowernumber) { # STEP 3 : ISSUING # # +my $noerror = 1; if ($barcode) { # always check for blockers on issuing my ( $error, $question ) = @@ -295,7 +296,7 @@ if ($barcode) { ); $blocker = 1; } - } + } if( !$blocker ){ my $confirm_required = 0; unless($issueconfirmed){ @@ -369,6 +370,7 @@ if ($barcode) { my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber ); $template->param( issuecount => $issue ); } +} # reload the borrower info for the sake of reseting the flags..... if ($borrowernumber) { -- 2.39.5