@@ -, +, @@ return value --------- -- creating one as needed is left as an exercise to the reader. -- Heading will be 'Subscription history for' without a title. -- Heading will include the title correctly. --- serials/subscription-history.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/serials/subscription-history.pl +++ a/serials/subscription-history.pl @@ -71,7 +71,7 @@ if($op && $op eq 'mod') { exit; } else { my $history = GetSubscriptionHistoryFromSubscriptionId($subscriptionid); - my (undef, $biblio) = GetBiblio($history->{'biblionumber'}); + my $biblio = GetBiblio($history->{'biblionumber'}); $template->param( subscriptionid => $subscriptionid, --