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

(-)a/C4/Search.pm (+2 lines)
Lines 2298-2303 sub searchResults { Link Here
2298
            $oldbiblio->{'alternateholdings_count'} = $alternateholdingscount;
2298
            $oldbiblio->{'alternateholdings_count'} = $alternateholdingscount;
2299
        }
2299
        }
2300
2300
2301
        $oldbiblio->{biblio_object} = Koha::Biblios->find( $oldbiblio->{biblionumber} );
2302
2301
        push( @newresults, $oldbiblio );
2303
        push( @newresults, $oldbiblio );
2302
    }
2304
    }
2303
2305
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-1 / +9 lines)
Lines 322-327 Link Here
322
                                                        [% END %]
322
                                                        [% END %]
323
                                                    [% END %]
323
                                                    [% END %]
324
324
325
                                                    [% IF Koha.Preference('OPACCustomCoverImages') AND Koha.Preference('CustomCoverImagesURL') %]
326
                                                         [% IF ( OPACURLOpenInNewWindow ) %]
327
                                                            <a href="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" target="_blank" rel="noreferrer"><img alt="Cover image" src="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" /></a>
328
                                                        [% ELSE %]
329
                                                            <a href="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]"><img alt="Cover image" src="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" /></a>
330
                                                        [% END %]
331
                                                    [% END %]
332
333
325
                                                    [% IF ( IDreamBooksResults && SEARCH_RESULT.normalized_isbn ) %]
334
                                                    [% IF ( IDreamBooksResults && SEARCH_RESULT.normalized_isbn ) %]
326
                                                        <div class="idbresult" style="display: none;">
335
                                                        <div class="idbresult" style="display: none;">
327
                                                            [% IF ( IDreamBooksReviews ) %]
336
                                                            [% IF ( IDreamBooksReviews ) %]
328
- 

Return to bug 22445