@@ -, +, @@ --- catalogue/detail.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/catalogue/detail.pl +++ a/catalogue/detail.pl @@ -553,7 +553,11 @@ if (C4::Context->preference("FRBRizeEditions")==1) { if ( C4::Context->preference("LocalCoverImages") == 1 ) { my $images = $biblio->cover_images; - $template->param( localimages => $biblio->cover_images ); + $template->param( + localimages => $biblio->cover_images->search( + {}, { order_by => [ \"COALESCE(itemnumber, 0, 1)", 'timestamp' ] } + ), + ); } # HTML5 Media --