? d5.sql ? imagecache_noactions_patch_6x.txt Index: imagecache.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imagecache/imagecache.module,v retrieving revision 1.94 diff -u -p -r1.94 imagecache.module --- imagecache.module 6 Jan 2009 01:40:21 -0000 1.94 +++ imagecache.module 6 Jan 2009 01:44:13 -0000 @@ -492,6 +492,11 @@ function imagecache_build_derivative($ac return false; } + // Simply copy the file if there are no actions. + if (empty($actions)) { + return file_copy($src, $dst, FILE_EXISTS_REPLACE); + } + if (!$image = imageapi_image_open($src)) { return false; }