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

(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt (-3 / +3 lines)
Lines 179-185 $.tablesorter.addParser({ Link Here
179
179
180
</td>[% END %]
180
</td>[% END %]
181
181
182
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %]</a><span class="item-details">
182
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% ISSUE.biblionumber %]">[% ISSUE.title |html %][% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %]</a><span class="item-details">
183
                        [% ISSUE.author %]
183
                        [% ISSUE.author %]
184
                    </span></td>
184
                    </span></td>
185
                [% IF ( ISSUE.overdue ) %]
185
                [% IF ( ISSUE.overdue ) %]
Lines 325-331 $.tablesorter.addParser({ Link Here
325
[% END %]
325
[% END %]
326
</td>[% END %]
326
</td>[% END %]
327
327
328
<td><a href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber %]">[% OVERDUE.title |html %]</a> <span class="item-details">[% OVERDUE.author %]</span></td>
328
<td><a href="/cgi-bin/koha/opac-detail.pl?bib=[% OVERDUE.biblionumber %]">[% OVERDUE.title |html %][% FOREACH subtitl IN OVERDUE.subtitle %] [% subtitl.subfield %][% END %]</a> <span class="item-details">[% OVERDUE.author %]</span></td>
329
329
330
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
330
[% UNLESS ( item_level_itypes ) %]<td>[% IF ( OVERDUE.imageurl ) %]<img src="[% OVERDUE.imageurl %]" title="[% OVERDUE.description %]" alt="[% OVERDUE.description %]" />[% END %] [% OVERDUE.description %]</td>[% END %]
331
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
331
[% IF ( show_barcode ) %]<td>[% OVERDUE.barcode %]</td>[% END %]
Lines 381-387 $.tablesorter.addParser({ Link Here
381
                    [% ELSE %]
381
                    [% ELSE %]
382
                            <tr>
382
                            <tr>
383
                    [% END %]
383
                    [% END %]
384
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">[% RESERVE.reserves_title %]</a>
384
                <td class="title"><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">[% RESERVE.reserves_title %][% FOREACH subtitl IN RESERVE.subtitle %] [% subtitl.subfield %][% END %]</a>
385
                    [% RESERVE.author %]
385
                    [% RESERVE.author %]
386
                </td>
386
                </td>
387
                <td class="reservedate">[% RESERVE.reservedate | $KohaDates %]</td>
387
                <td class="reservedate">[% RESERVE.reservedate | $KohaDates %]</td>
(-)a/opac/opac-user.pl (-3 / +2 lines)
Lines 176-182 if ($issues){ Link Here
176
            }
176
            }
177
        }
177
        }
178
        $issue->{'charges'} = $charges;
178
        $issue->{'charges'} = $charges;
179
179
        $issue->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($issue->{'biblionumber'}), GetFrameworkCode($issue->{'biblionumber'}));
180
        # check if item is renewable
180
        # check if item is renewable
181
        my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
181
        my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
182
        ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
182
        ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
Lines 256-262 foreach my $res (@reserves) { Link Here
256
    if ( $res->{'expirationdate'} eq '0000-00-00' ) {
256
    if ( $res->{'expirationdate'} eq '0000-00-00' ) {
257
      $res->{'expirationdate'} = '';
257
      $res->{'expirationdate'} = '';
258
    }
258
    }
259
259
    $res->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($res->{'biblionumber'}), GetFrameworkCode($res->{'biblionumber'}));
260
    $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
260
    $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
261
    $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
261
    $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
262
    my $biblioData = GetBiblioData($res->{'biblionumber'});
262
    my $biblioData = GetBiblioData($res->{'biblionumber'});
263
- 

Return to bug 10672