Skip to content

Commit

Permalink
serials : lot of bugfixes.
Browse files Browse the repository at this point in the history
Works fine now. And is documented (clic Help)
  • Loading branch information
tipaul committed Aug 12, 2004
1 parent 8dd2303 commit d46a373
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion MARCdetail.pl
Expand Up @@ -56,6 +56,7 @@ =head1 FUNCTIONS
use MARC::Record;
use C4::Biblio;
use C4::Acquisition;
use C4::Bull; #uses getsubscriptionfrom biblionumber
use HTML::Template;

my $query=new CGI;
Expand Down Expand Up @@ -175,10 +176,13 @@ =head1 FUNCTIONS
push(@header_value_loop, \%header_value);
}

my $subscriptionid = getsubscriptionfrombiblionumber($biblionumber);
$template->param(item_loop => \@item_value_loop,
item_header_loop => \@header_value_loop,
biblionumber => $biblionumber,
bibid => $bibid,
biblionumber => $biblionumber);
biblionumber => $biblionumber,
subscriptionid => $subscriptionid,
);
output_html_with_http_headers $query, $cookie, $template->output;

0 comments on commit d46a373

Please sign in to comment.