Browse Source

Bug 23158: Make the assignment statement more readable

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
remotes/origin/19.11.x
Jonathan Druart 5 years ago
committed by Martin Renvoize
parent
commit
9f4c2306eb
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 6
      circ/circulation.pl

6
circ/circulation.pl

@ -330,8 +330,10 @@ if (@$barcodes) {
my $checkout_infos;
for my $barcode ( @$barcodes ) {
my $template_params = { barcode => $barcode };
$template_params->{onsite_checkout} = $onsite_checkout;
my $template_params = {
barcode => $barcode,
onsite_checkout => $onsite_checkout,
};
# always check for blockers on issuing
my ( $error, $question, $alerts, $messages ) = CanBookBeIssued(

Loading…
Cancel
Save