[Koha-patches] [PATCH] Bug 8255: allow local cover images to be cached

Jared Camins-Esakov jcamins at cpbibliography.com
Fri Jun 15 20:00:26 CEST 2012


---
 catalogue/image.pl |    3 +--
 opac/opac-image.pl |    3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/catalogue/image.pl b/catalogue/image.pl
index 4fa77e9..ff74cbe 100755
--- a/catalogue/image.pl
+++ b/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;
 
diff --git a/opac/opac-image.pl b/opac/opac-image.pl
index ba554c7..e2dc556 100755
--- a/opac/opac-image.pl
+++ b/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;
 
-- 
1.7.2.5



More information about the Koha-patches mailing list