From 3cb84d5f420cbd0cca2ee6e1f8bc36bb27b0616a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 11 Dec 2017 23:54:54 +0100 Subject: [PATCH] Bug 19796 - Fix doubled up subscription info on OPAC detail page The info "Subscription from..." is showing twice on the subscription tab on the OPAC detail page because of a bad merge. This patch removes the doubled up information. To test: - Add a subscription - Search for the record in the OPAC - Switch to the subscription tab - Verify that the 'Subscription from...' line is repeated - Apply patch - Verify only one line remains and nothing is missing --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index f04d1b87a2..9fd2f27743 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -821,7 +821,6 @@ [% IF ( subscription.subscriptionnotes ) %]

[% subscription.subscriptionnotes FILTER html_line_break %]

[% END %] -

Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]

Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]

[% IF ( subscription.missinglist ) %]

Missing issues: [% subscription.missinglist %]

-- 2.11.0