@@ -, +, @@ --- catalogue/image.pl | 3 +-- opac/opac-image.pl | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) --- a/catalogue/image.pl +++ a/catalogue/image.pl @@ -92,8 +92,7 @@ if ( C4::Context->preference("LocalCoverImages") ) { } print $data->header( -type => $mimetype, - -'Cache-Control' => 'no-store', - -expires => 'now', + -expires => '+30m', -Content_Length => length($image) ), $image; --- a/opac/opac-image.pl +++ a/opac/opac-image.pl @@ -92,8 +92,7 @@ if ( C4::Context->preference("OPACLocalCoverImages") ) { } print $data->header( -type => $mimetype, - -'Cache-Control' => 'no-store', - -expires => 'now', + -expires => '+30m', -Content_Length => length($image) ), $image; --