@@ -, +, @@ tab wiew - Search a subscription in OPAC catalog - Go to Subscriptions tab (see screenshot in initial comment) - Verify that library name does not display - Apply patch - Verify that library name displays properly in Subscriptons tab - Verify that the tab title displays the subscriptions count e.g.: Subscriptions (2) --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -576,7 +576,7 @@ [% IF ( subscriptionsnumber ) %] [% IF ( defaulttab == 'subscriptions' ) %]
  • [% ELSE %]
  • [% END %] - Subscriptions + Subscriptions ( [% subscriptionsnumber %] )
  • [% END %] @@ -796,7 +796,7 @@

    There are [% subscriptionsnumber %] subscription(s) associated with this title.

    [% FOREACH subscription IN subscriptions %] [% IF ( subscription.branchcode ) %] -

    At library: [% Branches.GetName( subscription.branchname ) %]

    +

    At library: [% Branches.GetName( subscription.branchcode ) %]

    [% ELSE %] [% IF ( subscription.branchcode ) %]

    At library: [% subscription.branchcode %]

    --