From 4810a201ae9248d9afaf3860b5255ac679221ca1 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 8 Feb 2024 15:55:43 +0000 Subject: [PATCH] Bug 35518: Tidy the moved blocks This patch just tidies the moved blocks to get us past the QA script check. Signed-off-by: Martin Renvoize --- circ/circulation.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index f81102aec14..9296d9e642e 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -64,8 +64,8 @@ use List::MoreUtils qw( uniq ); my $query = CGI->new; my $borrowernumber = $query->param('borrowernumber'); -my $barcodes = []; -my $barcode = $query->param('barcode'); +my $barcodes = []; +my $barcode = $query->param('barcode'); # Barcode given by user could be '0' @@ -114,8 +114,8 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user ( my $override_high_holds = $query->param('override_high_holds'); my $override_high_holds_tmp = $query->param('override_high_holds_tmp'); -my $sessionID = $query->cookie("CGISESSID") ; -my $session = get_session($sessionID); +my $sessionID = $query->cookie("CGISESSID"); +my $session = get_session($sessionID); my $userenv = C4::Context->userenv; my $branch = $userenv->{'branch'} // ''; @@ -124,10 +124,10 @@ my $desk_id = $userenv->{"desk_id"} || ''; my $findborrower; my $autoswitched; -if (C4::Context->preference("AutoSwitchPatron") && $barcode) { +if ( C4::Context->preference("AutoSwitchPatron") && $barcode ) { my $new_barcode = $barcode; Koha::Plugins->call( 'patron_barcode_transform', \$new_barcode ); - if (Koha::Patrons->search( { cardnumber => $new_barcode} )->count() > 0) { + if ( Koha::Patrons->search( { cardnumber => $new_barcode } )->count() > 0 ) { $findborrower = $barcode; undef $barcode; undef $borrowernumber; -- 2.43.0