@@ -, +, @@ result list - Apply the patch - Peform a simple keyword search in the OPAC - On the results page the title and breadcrumbs should show 'Results of search for [your keyword] - Perform an advanced search with multiple parameters - The page title and breadrumbs should show only 'Search results' - The breadcrumbs should also show a link back to Advanced search using the returntosearch parameter --- .../bootstrap/en/modules/opac-results.tt | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt @@ -9,7 +9,11 @@ [% INCLUDE 'doc-head-open.inc' %] [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog › [% IF ( searchdesc ) %] - Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %] + [% IF ( ms_value ) %] + Results of search for '[% ms_value | html %]' + [% ELSE %] + Search results + [% END %] [% ELSE %] You did not specify any search criteria. [% END %] @@ -29,13 +33,24 @@
[% UNLESS ( total ) %] @@ -114,7 +129,7 @@ [% IF ( total ) %] [% IF ( ReturnPath ) %]
-

Return to the last advanced search

+

Return to the last advanced search

[% END %] [% END %] --