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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_linking_section.tt (-1 / +1 lines)
Lines 89-95 Link Here
89
                            <tr>
89
                            <tr>
90
                                [% SET td_class = '' %]
90
                                [% SET td_class = '' %]
91
                                [% IF ( line.even ) %]
91
                                [% IF ( line.even ) %]
92
                                    [% td_class = 'hilighted' %]
92
                                    [% td_class = 'highlighted' %]
93
                                [% END %]
93
                                [% END %]
94
                                <td class="[% td_class | html %]">
94
                                <td class="[% td_class | html %]">
95
                                    [% IF ( line.MARC_ON ) %]
95
                                    [% IF ( line.MARC_ON ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_4XX.tt (-1 / +1 lines)
Lines 94-100 Link Here
94
                        <tr>
94
                        <tr>
95
                            [% SET td_class = '' %]
95
                            [% SET td_class = '' %]
96
                            [% IF ( line.even ) %]
96
                            [% IF ( line.even ) %]
97
                                [% td_class = 'hilighted' %]
97
                                [% td_class = 'highlighted' %]
98
                            [% END %]
98
                            [% END %]
99
                            <td class="[% td_class | html %]">
99
                            <td class="[% td_class | html %]">
100
                                [% IF ( line.MARC_ON ) %]
100
                                [% IF ( line.MARC_ON ) %]
(-)a/reports/bor_issues_top.pl (-6 / +5 lines)
Lines 344-354 sub calculate { Link Here
344
            $grantotal += $patrons{$id}->{total};
344
            $grantotal += $patrons{$id}->{total};
345
        }
345
        }
346
        push @looprow, {
346
        push @looprow, {
347
            'rowtitle'  => $i++,
347
            'rowtitle'    => $i++,
348
            'loopcell'  => \@loopcell,
348
            'loopcell'    => \@loopcell,
349
            'hilighted' => ( $i % 2 ),
349
            'highlighted' => ( $i % 2 ),
350
            'patron'    => $patrons{$id}->{name},
350
            'patron'      => $patrons{$id}->{name},
351
            'reference' => $id,
351
            'reference'   => $id,
352
        };
352
        };
353
353
354
        # use a limit, if a limit is defined
354
        # use a limit, if a limit is defined
355
- 

Return to bug 39325