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