8 use C4::Interface::CGI::Output;
13 my $title = $query->param('title');
14 my $ISSN = $query->param('ISSN');
15 my @subscriptions = getsubscriptions($title,$ISSN);
16 my ($template, $loggedinuser, $cookie)
17 = get_template_and_user({template_name => "bull/bull-home.tmpl",
21 flagsrequired => {catalogue => 1},
26 subscriptions => \@subscriptions,
30 output_html_with_http_headers $query, $cookie, $template->output;