From 667ad51c7887158d296bf9249982b2b60d620ad2 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] 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. --- .../intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 14 ++++++++++++++ 1 file changed, 14 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 99096e5..42e8058 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,20 @@ 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 ( srchany ) %]Raw (any): [% srchany %] [% END %] + [% IF ( stdid ) %]Standard ID: [% stdid %] [% END %] +

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