From 0fc3c1aa5ecba364d2c039504f0909914e7f3a2d Mon Sep 17 00:00:00 2001 From: oleonard Date: Tue, 25 Jan 2005 21:40:38 +0000 Subject: [PATCH] Adding verbose parameter to allow for more detailed view in opac basket (requires update to opac-basket.tmpl to take advantage of added functionality) --- opac/opac-basket.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opac/opac-basket.pl b/opac/opac-basket.pl index cfb08293a9..f241f62dcc 100755 --- a/opac/opac-basket.pl +++ b/opac/opac-basket.pl @@ -20,7 +20,9 @@ my ($template, $borrowernumber, $cookie) my $bib_list=$query->param('bib_list'); my $print_basket=$query->param('print'); +my $verbose = $query->param('verbose'); +if($verbose) { $template->param(verbose => 1); } if ($print_basket) { $template->param(print_basket => 1); } my @bibs = split(/\//, $bib_list); -- 2.39.5