### Eclipse Workspace Patch 1.0
#P fluid-components
Index: src/webapp/fluid-components/js/fluid/uploader/Uploader.js
===================================================================
--- src/webapp/fluid-components/js/fluid/uploader/Uploader.js	(revision 6201)
+++ src/webapp/fluid-components/js/fluid/uploader/Uploader.js	(working copy)
@@ -114,17 +114,6 @@
         });
     };
     
-    var unbindDeleteKey = function (that, row) {
-        var deleteHandler = null;
-       
-        fluid.activatable(row, null, {
-            additionalBindings: [{
-                key: fluid.a11y.keys.DELETE, 
-                activateHandler: deleteHandler
-            }]
-        });
-    };
-    
     var bindRowHandlers = function (that, row) {
         if ($.browser.msie && $.browser.version < 7) {
             bindHover(row, that.options.styles);
@@ -197,7 +186,6 @@
         removeFile.removeClass(that.options.styles.remove);
         changeRowState(row, that.options.styles.uploaded);
         row.attr("title", that.options.strings.status.success);
-        unbindDeleteKey(that,row);
     };
     
     var showErrorForFile = function (that, file, error) {
Index: src/webapp/fluid-components/js/fluid/uploader/SWFUploadManager.js
===================================================================
--- src/webapp/fluid-components/js/fluid/uploader/SWFUploadManager.js	(revision 6201)
+++ src/webapp/fluid-components/js/fluid/uploader/SWFUploadManager.js	(working copy)
@@ -75,7 +75,7 @@
             
             fireAfterFileComplete(file);
             if (that.queue.isUploading && batch.numFilesCompleted < batch.files.length) {
-                that.uploadNextFile(batch.files[0].id);
+                that.uploadNextFile();
             } else {
                 finishUploading(that);
             }
