Make WordPress Core

Ticket #29891: 29891-01.patch

File 29891-01.patch, 678 bytes (added by gcorne, 10 years ago)
  • src/wp-admin/includes/ms.php

    diff --git src/wp-admin/includes/ms.php src/wp-admin/includes/ms.php
    index e46247e..0766e03 100644
    function check_upload_size( $file ) { 
    3535        if ( upload_is_user_over_quota( false ) ) {
    3636                $file['error'] = __( 'You have used your space quota. Please delete files before uploading.' );
    3737        }
    38         if ( $file['error'] != '0' && !isset($_POST['html-upload']) )
     38        if ( $file['error'] != '0' && ! isset( $_POST['html-upload'] ) && ( ! defined( 'DOING_AJAX' ) || DOING_AJAX != true ) ) {
    3939                wp_die( $file['error'] . ' <a href="javascript:history.go(-1)">' . __( 'Back' ) . '</a>' );
     40        }
    4041
    4142        return $file;
    4243}