? imagecache_expires.patch Index: imagecache.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imagecache/imagecache.module,v retrieving revision 1.100 diff -u -p -r1.100 imagecache.module --- imagecache.module 14 Apr 2009 00:01:21 -0000 1.100 +++ imagecache.module 16 Apr 2009 23:34:20 -0000 @@ -467,6 +467,8 @@ function imagecache_transfer($path) { if ($fileinfo = stat($path)) { $headers[] = 'Content-Length: '. $fileinfo[7]; + $headers[] = 'Expires: ' . gmdate('D, d M Y H:i:s', time() + 1209600) .' GMT'; + $headers[] = 'Cache-Control: max-age=1209600, private, must-revalidate'; _imagecache_cache_set_cache_headers($fileinfo, $headers); } file_transfer($path, $headers);