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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-1 / +7 lines)
Lines 525-531 Link Here
525
                                            <tr>
525
                                            <tr>
526
                                        [% END %]
526
                                        [% END %]
527
                                            <td class="title">
527
                                            <td class="title">
528
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">[% RESERVE.reserves_title %] [% FOREACH subtitl IN RESERVE.subtitle %] [% subtitl.subfield %][% END %]</a>
528
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">
529
                                                    [% RESERVE.reserves_title %]
530
                                                    [% FOREACH subtitl IN RESERVE.subtitle %]
531
                                                        [% subtitl.subfield %]
532
                                                    [% END %]
533
                                                    [% RESERVE.enumchron %]
534
                                                </a>
529
                                                [% RESERVE.author %]
535
                                                [% RESERVE.author %]
530
                                            </td>
536
                                            </td>
531
                                            <td class="reservedate">
537
                                            <td class="reservedate">
(-)a/opac/opac-user.pl (-1 / +1 lines)
Lines 311-316 foreach my $res (@reserves) { Link Here
311
        $res->{'holdingbranch'} =
311
        $res->{'holdingbranch'} =
312
          $branches->{ $item->{'holdingbranch'} }->{'branchname'};
312
          $branches->{ $item->{'holdingbranch'} }->{'branchname'};
313
        $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
313
        $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
314
        $res->{'enumchron'} = $item->{'enumchron'} if $item->{'enumchron'};
314
        # get document reserve status
315
        # get document reserve status
315
        my $biblioData = GetBiblioData($res->{'biblionumber'});
316
        my $biblioData = GetBiblioData($res->{'biblionumber'});
316
        $res->{'waiting_title'} = $biblioData->{'title'};
317
        $res->{'waiting_title'} = $biblioData->{'title'};
317
- 

Return to bug 13611