Index: imagecache_profiles.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagecache_profiles/imagecache_profiles.module,v
retrieving revision 1.4.2.11
diff -u -p -r1.4.2.11 imagecache_profiles.module
--- imagecache_profiles.module	12 Jan 2010 11:04:22 -0000	1.4.2.11
+++ imagecache_profiles.module	19 Feb 2010 04:39:35 -0000
@@ -58,14 +58,15 @@ function imagecache_profiles_preprocess_
 
     if (isset($picture)) {
       $alt = t("@user's picture", array('@user' => $account->name ? $account->name : variable_get('anonymous', t('Anonymous'))));
+      $title = t('View user profile.');
       $preset = imagecache_preset($size);
       if (empty($preset)) {
-        $variables['picture'] = $default; //theme('image', $picture, $alt, $alt, '', FALSE);
+        $variables['picture'] = $default; //theme('image', $picture, $alt, $title, '', FALSE);
       }
       else {
-        $variables['picture'] = theme('imagecache', $preset['presetname'], $picture, $alt, $alt);
+        $variables['picture'] = theme('imagecache', $preset['presetname'], $picture, $alt, $title);
         if (!empty($account->uid) && user_access('access user profiles')) {
-          $attributes = array('attributes' => array('title' => t('View user profile.')), 'html' => TRUE);
+          $attributes = array('attributes' => array('title' => $title), 'html' => TRUE);
           $variables['picture'] = l($variables['picture'], "user/$account->uid", $attributes);
         }
       }
