Bug 23158: Make the assignment statement more readable
[koha-equinox.git] / circ / circulation.pl
index 8fcb9bb..43ce1aa 100755 (executable)
@@ -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(