From 359205019f30f9eb53374f39fa4378022cedaa03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Fri, 15 Aug 2014 06:28:07 +0200 Subject: [PATCH] [PASSED QA] Bug 12835 - Acquisitions: Show search terms in z39.50 results To test: - Go to Acquisitions, select a bookshop and a basket, click 'Add to basket':'From an external source' - Do a search - Your search terms should display at the top of the results page. - Repeat search with several combinations of search terms (with and without results). - Check the output for correct html. Fields Raw (any) and Standard ID removed / MV Signed-off-by: Paola Rossi Signed-off-by: Katrin Fischer Passes QA script, works as described, no problems found. --- .../intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt index 605dcb6..d646d52 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt @@ -149,6 +149,18 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : [% ELSE %]

Search results

+ +

You searched for: + [% IF ( title ) %]Title: [% title %] [% END %] + [% IF ( author ) %]Author: [% author %] [% END %] + [% IF ( isbn ) %]ISBN: [% isbn %] [% END %] + [% IF ( issn ) %]ISSN: [% issn %] [% END %] + [% IF ( lccall ) %]LC call number: [% lccall %] [% END %] + [% IF ( subject ) %]Subject heading: [% subject %] [% END %] + [% IF ( controlnumber ) %]Control no: [% controlnumber %] [% END %] + [% IF ( dewey ) %]Dewey: [% dewey %] [%END %] +

+ [% IF ( breeding_loop ) %] -- 1.9.1