@@ -, +, @@ - Search for a patron without checkout. - Check an item out using the "normal" checkout. - Verify the checkout list contain the checkout. --- circ/circulation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/circulation.pl +++ a/circ/circulation.pl @@ -392,7 +392,7 @@ if (@$barcodes) { # FIXME If the issue is confirmed, we launch another time GetMemberIssuesAndFines, now display the issue count after issue my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber ); - $iteminfo->{issuecount} = $issue; + $template_params->{issuecount} = $issue; if ( $iteminfo ) { $iteminfo->{subtitle} = GetRecordValue('subtitle', GetMarcBiblio($iteminfo->{biblionumber}), GetFrameworkCode($iteminfo->{biblionumber})); --