From 8a3b8f3ddd44f118f827895c02cebbdd40945475 Mon Sep 17 00:00:00 2001 From: Viktor Sarge Date: Tue, 17 Jun 2014 09:15:40 +0100 Subject: [PATCH] Bug 5672 Gives RSS icons to catalog search history This patch adds an extra column to the table for the search history (this session and previous searches) with RSS icons for each search. Test plan: * Verify that there is no RSS icons for saved searches in opac * Install the patch * Verify that there is no RSS icons for saved searches and searches for the current session in Opac. * Test that the RSS links produce the expected result. Note: I left out authority searches since I have very little experience with authority searches and didn't feel I could test it properly. Signed-off-by: Nicole C. Engard Signed-off-by: Chris Cormack Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt index 9c2e2be..a440e80 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-search-history.tt @@ -53,6 +53,7 @@ Date + Subscribe Search Results @@ -61,6 +62,7 @@ [% FOREACH s IN current_biblio_searches %] [% s.time |$KohaDates with_hours => 1 %] + Subscribe to this search [% s.query_desc |html %] [% s.total %] @@ -81,6 +83,7 @@ Date + Subscribe Search Results @@ -89,6 +92,7 @@ [% FOREACH s IN previous_biblio_searches %] [% s.time |$KohaDates with_hours => 1 %] + Subscribe to this search [% s.query_desc |html %] [% s.total %] -- 2.0.0.rc2