@@ -, +, @@ when no holds --- koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -23,7 +23,7 @@ [% IF ( moredetailview ) %]
  • [% ELSE %]
  • [% END %] Items
  • [% IF ( CAN_user_reserveforothers ) %] - [% IF ( holdsview ) %]
  • [% ELSE %]
  • [% END %]Holds ([% Biblio.HoldsCount( biblio_object_id ) %])
  • + [% IF ( holdsview ) %]
  • [% ELSE %]
  • [% END %]Holds[% IF (Biblio.HoldsCount) %] ([% Biblio.HoldsCount( biblio_object_id ) %])[% END %]
  • [% END %] [% IF ( EasyAnalyticalRecords ) %][% IF ( analyze ) %]
  • [% ELSE %]
  • [% END %]Analytics
  • [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt @@ -587,7 +587,7 @@ var holdForPatron = function () { [% IF ( SEARCH_RESULT.norequests ) %] No holds allowed [% ELSE %] - Holds ([% SEARCH_RESULT.holdscount %]) + Holds [% IF (SEARCH_RESULT.holdscount) %]([% SEARCH_RESULT.holdscount %])[% END %] [% IF ( holdfor ) %] | Place hold for [% holdfor_firstname %] [% holdfor_surname %] ([% holdfor_cardnumber %])[% END %] [% END %] --