From b80b8cfa5ebb7c27d5ee13411705dfcb80d6f25f Mon Sep 17 00:00:00 2001 From: Aleisha Date: Wed, 2 Mar 2016 00:36:49 +0000 Subject: [PATCH] Bug 13238: Improve heading on vendor search when searching for all vendors To test: 1) Go to Acquisitions and do an empty vendor search 2) Should now read "Vendor search: X result(s) found" 3) Enter a search term and search for vendor 4) Should now read "Vendor search: Y result(s) found for 'search term'" Sponsored-by: Catalyst IT NOTE: two nested if/else/end's could make it result/results, as suggested in comment #3. However, this meets my understanding of the problem as defined in comment #0. Signed-off-by: Mark Tompsett --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt index 5e6ff45..0bce0df 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt @@ -52,7 +52,11 @@ $(document).ready(function() { [% INCLUDE 'acquisitions-toolbar.inc' %] [% UNLESS ( count == 1 ) %] -

You searched on vendor [% supplier %], [% count %] results found

+ [% IF ( supplier.length < 1 ) %] +

Vendor search: [% count %] result(s) found

+ [% ELSE %] +

Vendor search: [% count %] result(s) found for '[% supplier %]'

+ [% END %] [% END %] [% IF ( loop_suppliers.size ) %] [% UNLESS (count == 1) %] -- 2.1.4