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

(-)a/C4/Serials.pm (-8 lines)
Lines 612-625 sub GetSubscriptions { Link Here
612
    my $odd           = 1;
612
    my $odd           = 1;
613
613
614
    while ( my $line = $sth->fetchrow_hashref ) {
614
    while ( my $line = $sth->fetchrow_hashref ) {
615
        if ( $previousbiblio eq $line->{biblionumber} ) {
616
            $line->{title} = "";
617
            $line->{issn}  = "";
618
        } else {
619
            $previousbiblio = $line->{biblionumber};
620
            $odd           = -$odd;
621
        }
622
        $line->{toggle} = 1 if $odd == 1;
623
        $line->{'cannotedit'} =
615
        $line->{'cannotedit'} =
624
          (      C4::Context->preference('IndependantBranches')
616
          (      C4::Context->preference('IndependantBranches')
625
              && C4::Context->userenv
617
              && C4::Context->userenv
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tt (-4 / +1 lines)
Lines 99-107 Serials updated : Link Here
99
                [% IF ( subscription.issn ) %][% subscription.issn %]
99
                [% IF ( subscription.issn ) %][% subscription.issn %]
100
                [% END %]
100
                [% END %]
101
                </td>
101
                </td>
102
                <td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid %]" class="button" title="subscription detail">[% IF ( subscription.title ) %][% subscription.title |html %][% ELSE %]
102
                <td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid %]" class="button" title="subscription detail">[% subscription.title |html %]</a>
103
                    ---
104
                [% END %]</a>
105
                </td>
103
                </td>
106
                <td>[% IF ( subscription.notes ) %][% subscription.notes %][% END %]
104
                <td>[% IF ( subscription.notes ) %][% subscription.notes %][% END %]
107
                [% IF ( subscription.internalnotes ) %]([% subscription.internalnotes %])[% END %]
105
                [% IF ( subscription.internalnotes ) %]([% subscription.internalnotes %])[% END %]
108
- 

Return to bug 7357