View | Details | Raw Unified | Return to bug 42017
Collapse All | Expand All

(-)a/opac/opac-news-rss.pl (-3 / +2 lines)
Lines 20-26 Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
use CGI;
21
use CGI;
22
use C4::Auth   qw( get_template_and_user );
22
use C4::Auth   qw( get_template_and_user );
23
use C4::Output qw( output_html_with_http_headers );
23
use C4::Output qw( output_with_http_headers );
24
use Koha::AdditionalContents;
24
use Koha::AdditionalContents;
25
25
26
my $input = CGI->new;
26
my $input = CGI->new;
Lines 53-56 my $koha_news = Koha::AdditionalContents->search_for_display( Link Here
53
53
54
$template->param( koha_news => $koha_news );
54
$template->param( koha_news => $koha_news );
55
55
56
output_html_with_http_headers $input, $cookie, $template->output;
56
output_with_http_headers $input, $cookie, $template->output, "rss";
57
- 

Return to bug 42017