View | Details | Raw Unified | Return to bug 3292
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl (-1 / +2 lines)
Lines 385-391 Link Here
385
    <h2>This is a serial subscription</h2>
385
    <h2>This is a serial subscription</h2>
386
    <p> (There are <!-- TMPL_VAR NAME="subscriptionsnumber" --> subscriptions associated with this title).</p>
386
    <p> (There are <!-- TMPL_VAR NAME="subscriptionsnumber" --> subscriptions associated with this title).</p>
387
    <!-- TMPL_LOOP Name="subscriptions" -->
387
    <!-- TMPL_LOOP Name="subscriptions" -->
388
    <!-- TMPL_IF name="branchcode" --><h3>At branch: <!-- TMPL_VAR NAME="branchcode" --></h3><!-- /TMPL_IF -->
388
    <!-- TMPL_IF name="branchname" --><h3>At library: <!-- TMPL_VAR NAME="branchname" --></h3><!-- TMPL_ELSE -->
389
    <!-- TMPL_IF name="branchcode" --><h3>At branch: <!-- TMPL_VAR NAME="branchcode" --></h3><!-- /TMPL_IF --><!-- /TMPL_IF -->
389
    <!-- TMPL_IF NAME="subscriptionnotes" --><p><!--TMPL_VAR NAME="subscriptionnotes"--> </p><!-- /TMPL_IF -->
390
    <!-- TMPL_IF NAME="subscriptionnotes" --><p><!--TMPL_VAR NAME="subscriptionnotes"--> </p><!-- /TMPL_IF -->
390
    <!--TMPL_IF NAME="latestserials"-->
391
    <!--TMPL_IF NAME="latestserials"-->
391
    <p> The three latest issues for this subscription:</p>
392
    <p> The three latest issues for this subscription:</p>
(-)a/opac/opac-detail.pl (-1 / +1 lines)
Lines 103-108 foreach my $subscription (@subscriptions) { Link Here
103
    $cell{subscriptionid}    = $subscription->{subscriptionid};
103
    $cell{subscriptionid}    = $subscription->{subscriptionid};
104
    $cell{subscriptionnotes} = $subscription->{notes};
104
    $cell{subscriptionnotes} = $subscription->{notes};
105
    $cell{branchcode}        = $subscription->{branchcode};
105
    $cell{branchcode}        = $subscription->{branchcode};
106
    $cell{branchname}        = GetBranchName($subscription->{branchcode});
106
    $cell{hasalert}          = $subscription->{hasalert};
107
    $cell{hasalert}          = $subscription->{hasalert};
107
    #get the three latest serials.
108
    #get the three latest serials.
108
    $cell{latestserials} =
109
    $cell{latestserials} =
109
- 

Return to bug 3292