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

(-)a/Koha/Biblio.pm (-3 / +9 lines)
Lines 37-50 Koha::Biblio - Koha Biblio Object class Link Here
37
37
38
=cut
38
=cut
39
39
40
=head3 subtitle
40
=head3 subtitles
41
42
my @subtitles = $biblio->subtitles();
43
44
Returns list of subtitles for a record.
45
46
Keyword to MARC mapping for subtitle must be set for this method to return any possible values.
41
47
42
=cut
48
=cut
43
49
44
sub subtitle {
50
sub subtitles {
45
    my ( $self ) = @_;
51
    my ( $self ) = @_;
46
52
47
    return GetRecordValue( 'subtitle', GetMarcBiblio( $self->id() ), GetFrameworkCode( $self->id() ) );
53
    return GetRecordValue( 'subtitle', GetMarcBiblio( $self->id ), $self->frameworkcode );
48
}
54
}
49
55
50
56
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-4 / +3 lines)
Lines 527-533 Link Here
527
                                            <td class="title">
527
                                            <td class="title">
528
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">
528
                                                <a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% RESERVE.biblionumber %]">
529
                                                    [% RESERVE.biblio.title %]
529
                                                    [% RESERVE.biblio.title %]
530
                                                    [% FOREACH subtitl IN RESERVE.biblio.subtitle %]
530
                                                    [% FOREACH subtitl IN RESERVE.biblio.subtitles %]
531
                                                        [% subtitl.subfield %]
531
                                                        [% subtitl.subfield %]
532
                                                    [% END %]
532
                                                    [% END %]
533
                                                    [% RESERVE.item.enumchron %]
533
                                                    [% RESERVE.item.enumchron %]
Lines 612-620 Link Here
612
                                                                        <div class="modal-header">
612
                                                                        <div class="modal-header">
613
                                                                            <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
613
                                                                            <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
614
                                                                            [% IF RESERVE.suspend %]
614
                                                                            [% IF RESERVE.suspend %]
615
                                                                                <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Resume your hold on <i>[% RESERVE.reserves_title %]</i></h3>
615
                                                                                <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Resume your hold on <i>[% RESERVE.biblio.title %]</i></h3>
616
                                                                            [% ELSE %]
616
                                                                            [% ELSE %]
617
                                                                                <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Suspend your hold on <i>[% RESERVE.reserves_title %]</i></h3>
617
                                                                                <h3 id="suspendModal[% RESERVE.reserve_id %]Label">Suspend your hold on <i>[% RESERVE.biblio.title %]</i></h3>
618
                                                                            [% END %]
618
                                                                            [% END %]
619
                                                                        </div>
619
                                                                        </div>
620
                                                                        <div class="modal-body">
620
                                                                        <div class="modal-body">
621
- 

Return to bug 13918