Index: upload_image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/upload_image/upload_image.module,v
retrieving revision 1.17.2.6
diff -u -p -r1.17.2.6 upload_image.module
--- upload_image.module	29 Aug 2007 15:20:07 -0000	1.17.2.6
+++ upload_image.module	18 Jul 2008 09:45:30 -0000
@@ -13,9 +13,10 @@ function upload_image_link($type, $node 
     $image = db_fetch_object(db_query('SELECT u.oid, n.title, n.uid FROM {upload_images} u INNER JOIN {node} n ON u.oid = n.nid WHERE u.nid = %d', $node->nid));
     if ($image->oid) {
       $links['upload_image_link'] = array(
-        'title' => t('parent post: %title', array('%title' => check_plain($image->title))),
+        'title' => t('parent post: %title', array('%title' => $image->title)),
         'href' => 'node/'. $image->oid,
-        'attributes' => array('title' => t('Read parent post to view all attached images.'), 'html' => TRUE),
+        'attributes' => array('title' => t('Read parent post to view all attached images.')),
+        'html' => TRUE,
       );
     }
   }
