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

(-)a/catalogue/detail.pl (-2 / +5 lines)
Lines 554-560 if (C4::Context->preference("FRBRizeEditions")==1) { Link Here
554
554
555
if ( C4::Context->preference("LocalCoverImages") == 1 ) {
555
if ( C4::Context->preference("LocalCoverImages") == 1 ) {
556
    my $images = $biblio->cover_images;
556
    my $images = $biblio->cover_images;
557
    $template->param( localimages => $biblio->cover_images );
557
    $template->param(
558
        localimages => $biblio->cover_images->search(
559
            {}, { order_by => [ \"COALESCE(itemnumber, 0, 1)", 'timestamp' ] }
560
        ),
561
    );
558
}
562
}
559
563
560
# HTML5 Media
564
# HTML5 Media
561
- 

Return to bug 30976