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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelf.tt (-1 / +1 lines)
Lines 56-62 Your list: [% shelfname %] Link Here
56
            [% IF ( BIBLIO_RESULT.ISBN ) %]
56
            [% IF ( BIBLIO_RESULT.ISBN ) %]
57
            <span>
57
            <span>
58
                ISBN: [% FOREACH isbn IN BIBLIO_RESULT.ISBN %]
58
                ISBN: [% FOREACH isbn IN BIBLIO_RESULT.ISBN %]
59
                          [% isbn.marcisbn %]
59
                          [% isbn %]
60
                          [% UNLESS ( loop.last ) %]; [% END %]
60
                          [% UNLESS ( loop.last ) %]; [% END %]
61
                      [% END %]
61
                      [% END %]
62
            </span><br/>
62
            </span><br/>
(-)a/virtualshelves/sendshelf.pl (-1 / +2 lines)
Lines 88-99 if ($email) { Link Here
88
88
89
        my @items = GetItemsInfo($biblionumber);
89
        my @items = GetItemsInfo($biblionumber);
90
90
91
        $dat->{ISBN}           = GetMarcISBN($record, $marcflavour);
91
        $dat->{MARCNOTES}      = $marcnotesarray;
92
        $dat->{MARCNOTES}      = $marcnotesarray;
92
        $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
93
        $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
93
        $dat->{MARCAUTHORS}    = $marcauthorsarray;
94
        $dat->{MARCAUTHORS}    = $marcauthorsarray;
94
        $dat->{'biblionumber'} = $biblionumber;
95
        $dat->{'biblionumber'} = $biblionumber;
95
        $dat->{ITEM_RESULTS}   = \@items;
96
        $dat->{ITEM_RESULTS}   = \@items;
96
        $dat->{subtitle}       = $subtitle;
97
        $dat->{subtitle}       = $subtitle;
98
        $dat->{HASAUTHORS}     = $dat->{'author'} || @$marcauthorsarray;
97
99
98
        $iso2709 .= $record->as_usmarc();
100
        $iso2709 .= $record->as_usmarc();
99
101
100
- 

Return to bug 15137