Index: sources/attach.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/filefield_sources/sources/attach.inc,v
retrieving revision 1.2
diff -u -p -r1.2 attach.inc
--- sources/attach.inc	9 Aug 2010 15:06:50 -0000	1.2
+++ sources/attach.inc	16 Dec 2010 17:47:37 -0000
@@ -181,7 +181,6 @@ function _filefield_source_attach_option
   if (count($file_attach)) {
     $options = array('' => t('-- Select file --'));
     foreach ($file_attach as $filename => $fileinfo) {
-      $filename = basename($filename);
       $options[$filename] = $filename;
     }
   }
@@ -197,7 +196,7 @@ function filefield_source_attach_value($
   if (!empty($item['filefield_attach']['filename'])) {
     $field = content_fields($element['#field_name'], $element['#type_name']);
     $attach_path = _filefield_source_attach_directory($field['widget']);
-    $filepath = $attach_path . '/' . $item['filefield_attach']['filename'];
+    $filepath = $item['filefield_attach']['filename'];
 
     // Clean up the file name extensions and transliterate.
     $original_filepath = $filepath;
