--- uc_file/uc_file.pages.inc	2010-07-12 01:32:00.000000000 +0000
+++ uc_file/uc_file.pages.inc.new	2010-08-16 20:52:52.306539791 +0000
@@ -32,7 +32,7 @@ define('UC_FILE_ERROR_HOOK_ERROR'       
  * @param $files
  *   Array of the files.
  */
-function theme_uc_file_user_downloads($header, $files) {
+function theme_uc_file_user_downloads($header, $files, $account) {
   $rows = array();
   $row = 0;
   foreach ($files as $file) {
@@ -56,6 +56,11 @@ function theme_uc_file_user_downloads($h
   '<br />'. t('Downloads will not be counted until the file is finished transferring, even though the number may increment when you click.') .
   '<br /><b>'. t('Do not use any download acceleration feature to download the file, or you may lock yourself out of the download.') .'</b>'.
   '</p></div>';
+
+  if (user_access('administer users')) {
+    $output .= drupal_get_form('uc_file_user_form', $account);
+  }
+
   return $output;
 }
 
@@ -126,7 +131,7 @@ function uc_file_user_downloads($account
     $row++;
   }
 
-  return theme('uc_file_user_downloads', $header, $files);
+  return theme('uc_file_user_downloads', $header, $files, $account);
 }
 
 /**
