From 89f1d2f0d5d38df43e4c9c38a7620e237c137f29 Mon Sep 17 00:00:00 2001 From: John Soros Date: Mon, 25 May 2009 17:11:47 +0200 Subject: [PATCH] Added displaying of seriestitle and volume in basket content listing page, next to the title, see bug http://suivi.biblibre.com/view.php?id=1410 --- acqui/basket.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/acqui/basket.pl b/acqui/basket.pl index 16af043c0e..c8142b31f2 100755 --- a/acqui/basket.pl +++ b/acqui/basket.pl @@ -239,6 +239,10 @@ if ( $op eq 'delete_confirm' ) { $line{$key} .= '??'; } } + my $volume = $results[$i]->{'volume'}; + my $seriestitle = $results[$i]->{'seriestitle'}; + $line{'title'} .= " / $seriestitle" if $seriestitle; + $line{'title'} .= " / $volume" if $volume; push @books_loop, \%line; } -- 2.20.1