@@ -, +, @@ searching for all vendors as suggested in comment #3. However, this meets my understanding of the problem as defined in comment #0. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt +++ a/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 %] results found

+ [% ELSE %] +

Vendor search: [% count %] results found for '[% supplier %]'

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