--- C:/Documents and Settings/Lisa/Bureau/screenshot/link_screenshot/link_screenshot.module	Wed Mar 10 12:23:12 2010
+++ C:/www/website/simula/sites/all/modules/screenshot/link_screenshot/link_screenshot.module	Sun May 02 17:56:10 2010
@@ -118,7 +118,7 @@
     $attributes['class'] .= ' screenshot-default';
   }
   $title = $element['#item']['display_title'];
-  $preset = substr($element['#formatter'], strrpos($element['#formatter'], '_') + 1);
+  $preset = substr($element['#formatter'], strpos($element['#formatter'], '_') + 1);
   
   return theme('imagecache', $preset, $file, $title, $title, $attributes);
 }
@@ -138,10 +138,10 @@
     $attributes['class'] .= ' screenshot-default';
   }
   $title = $element['#item']['display_title'];
-  $preset = substr($element['#formatter'], strrpos($element['#formatter'], '_') + 1);
-  
+  $preset = substr($element['#formatter'], strpos($element['#formatter'], '_') + 1);
   $image = theme('imagecache', $preset, $file, $title, $title, $attributes);
   $attributes = array('class' => 'screenshot', 'title' => $title);
+  
   return l($image, $url, array('html' => TRUE, 'attributes' => $attributes));
 }
 
