From da42270074f31a12c6509cccd16ff9250ddfaa91 Mon Sep 17 00:00:00 2001 From: Aleisha Date: Thu, 7 Jul 2016 23:26:12 +0000 Subject: [PATCH] Bug 16875: OPAC - removing link to records if authority is not used by any records To test: 1) Do an authority search. Notice that authorities not used by any records have a clickable link (under Biblio records) which redirects to a catalog search with no results 2) Go back to the authority search and click View full heading for an authority with no records. Notice that under the auth name, it says Number of records used in: 0, with a link to a catalog search 3) Apply patch 4) Repeat steps 1 and 2. Authorities not used in any records should no longer have clickable links nd authorities which have records should work as expected. Sponsored-by: Catalyst IT --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt | 2 +- .../bootstrap/en/modules/opac-authoritiessearchresultlist.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt index 3f3f55c..fd85eda 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt @@ -46,7 +46,7 @@

[% summary.mainentry %][% IF authtypetext %] ([% authtypetext %])[% END %]

- Number of records used in: [% count %] + [% IF count > 0 %]Number of records used in: [% count %][% ELSE %]This authority is not used in any records.[% END %]
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt index 4ebaac6..efacd76 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-authoritiessearchresultlist.tt @@ -90,7 +90,7 @@ [% resul.authtype %] [% UNLESS ( resul.isEDITORS ) %] - [% resul.used %] biblios + [% IF resul.used > 0 %][% resul.used %] biblios[% ELSE %]0 biblios[% END %] [% END %] -- 1.7.10.4