Skip to content
Permalink
Browse files Browse the repository at this point in the history
Media: Simplify upload error message construction.
Built from https://develop.svn.wordpress.org/trunk@40736


git-svn-id: http://core.svn.wordpress.org/trunk@40594 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
swissspidy committed May 16, 2017
1 parent 38347d7 commit 8c7ea71
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
27 changes: 18 additions & 9 deletions wp-includes/js/plupload/handlers.js
Expand Up @@ -328,15 +328,24 @@ function uploadError(fileObj, errorCode, message, uploader) {
}
}

function uploadSizeError( up, file, over100mb ) {
var message;

if ( over100mb )
message = pluploadL10n.big_upload_queued.replace('%s', file.name) + ' ' + pluploadL10n.big_upload_failed.replace('%1$s', '<a class="uploader-html" href="#">').replace('%2$s', '</a>');
else
message = pluploadL10n.file_exceeds_size_limit.replace('%s', file.name);

jQuery('#media-items').append('<div id="media-item-' + file.id + '" class="media-item error"><p>' + message + '</p></div>');
function uploadSizeError( up, file ) {
var message, errorDiv;

message = pluploadL10n.file_exceeds_size_limit.replace('%s', file.name);

// Construct the error div.
errorDiv = jQuery( '<div />' )
.attr( {
'id': 'media-item-' + file.id,
'class': 'media-item error'
} )
.append(
jQuery( '<p />' )
.text( message )
);

// Append the error.
jQuery('#media-items').append( errorDiv );
up.removeFile(file);
}

Expand Down

1 comment on commit 8c7ea71

@r00tSD
Copy link

@r00tSD r00tSD commented on 8c7ea71 Oct 29, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do i exploit it

Please sign in to comment.