Make WordPress Core

Ticket #22849: 22849.diff

File 22849.diff, 522 bytes (added by koopersmith, 12 years ago)
  • wp-includes/js/plupload/wp-plupload.js

     
    150150                        _.each( files, function( file ) {
    151151                                var attributes, image;
    152152
     153                                // Ignore failed uploads.
     154                                if ( plupload.FAILED === file.status )
     155                                        return;
     156
    153157                                // Generate attributes for a new `Attachment` model.
    154158                                attributes = _.extend({
    155159                                        file:      file,