Index: search_files/search_files_attachments.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/search_files/Attic/search_files_attachments.module,v retrieving revision 1.1.2.29 diff -b -U5 -r1.1.2.29 search_files_attachments.module --- search_files/search_files_attachments.module 15 Sep 2009 16:45:51 -0000 1.1.2.29 +++ search_files/search_files_attachments.module 20 Oct 2009 12:49:07 -0000 @@ -137,11 +137,11 @@ $node = node_load($file->nid); $realpath = realpath($file->filepath); if (is_file($realpath)) { $fileinfo = (object)pathinfo($realpath); $results[] = array( - 'link' => url($file->filepath), + 'link' => file_create_url($file->filepath), 'title' => $file->filename, 'user' => theme('username', $node), 'date' => $file->timestamp, 'type' => check_plain(search_files_helper_name($fileinfo->extension)), 'node' => $node,