From b3ef7c78cf3b45feba4965c21278c021c30be650 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 Signed-off-by: Amit Gupta --- 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 e2ac9aa..180d0d2 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.7.4