Index: views_upload.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/Attic/views_upload.inc,v
retrieving revision 1.4.4.5
diff -u -F^f -r1.4.4.5 views_upload.inc
--- views_upload.inc	3 Mar 2007 22:40:31 -0000	1.4.4.5
+++ views_upload.inc	22 Jan 2008 09:33:15 -0000
@@ -154,7 +154,7 @@ function views_handler_file_size($fieldi
 
 function views_handler_file_filename_download($fieldinfo, $fielddata, $value, $data) {
   $link_text = $fielddata['options'] ? $fielddata['options'] : $value;
-  return $value ? l($link_text, check_url(file_create_url($data->files_filepath))) : '';
+  return $value ? l($link_text, file_create_url($data->files_filepath)) : '';
 }
 
 function views_handler_file_filter_fid_exist($op, $filter, $filterdata, &$query) {
@@ -194,7 +194,7 @@ function views_handler_file_all_files($f
     if ($fielddata['options'] == 'nolink' || $fielddata['options'] == 'nolinkdesc') {
       $links[] = check_plain($display_string);
     } else {
-      $links[] = l($display_string, check_url(file_create_url($file->filepath)));
+      $links[] = l($display_string, file_create_url($file->filepath));
     }
   }
   return implode(' | ', $links);
