From 444b6a14961d424abd4431e0c3ca699293e78087 Mon Sep 17 00:00:00 2001 From: Didier Gautheron Date: Sun, 12 Jul 2020 14:09:15 +0200 Subject: [PATCH] Bug 25982: OPAC shelves RSS link output is xml Output rss feed as text/xml Test plan: 1) have books entered 2) log in create a list 3) add books to list 4) display list in OPAC 5) click the RSS link button. -- output is displayed as html text 6) apply patch 7) repeat steps 4&5 -- output is displayed as xml tree Signed-off-by: Sally --- opac/opac-shelves.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opac/opac-shelves.pl b/opac/opac-shelves.pl index e2ac9aafc8..180d0d2701 100755 --- a/opac/opac-shelves.pl +++ b/opac/opac-shelves.pl @@ -433,4 +433,5 @@ $template->param( listsview => 1, ); -output_html_with_http_headers $query, $cookie, $template->output; +my $content_type = $query->param('rss')? 'rss' : 'html'; +output_with_http_headers $query, $cookie, $template->output, $content_type; -- 2.11.0