Index: imagecache.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagecache/imagecache.info,v
retrieving revision 1.4
diff -u -p -r1.4 imagecache.info
--- imagecache.info	15 Apr 2008 15:12:23 -0000	1.4
+++ imagecache.info	7 May 2009 15:04:57 -0000
@@ -3,3 +3,4 @@ name = ImageCache
 description = Dynamic image manipulator and cache.
 package = ImageCache
 dependencies = imageapi
+dependencies = transliteration
Index: imagecache.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagecache/imagecache.module,v
retrieving revision 1.68.2.12
diff -u -p -r1.68.2.12 imagecache.module
--- imagecache.module	14 Apr 2009 00:03:37 -0000	1.68.2.12
+++ imagecache.module	7 May 2009 15:04:58 -0000
@@ -214,6 +214,9 @@ function imagecache_action_definition($a
  */
 function imagecache_create_url($presetname, $filepath, $bypass_browser_cache = FALSE) {
   $path = _imagecache_strip_file_directory($filepath);
+  if (module_exists('transliteration')) {
+    $path = transliteration_get($path);
+  }
   $query = $bypass_browser_cache ? time() : $bypass_browser_cache;
   switch (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC)) {
     case FILE_DOWNLOADS_PUBLIC:
