﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
16217,XMLRPC upload limits don't follow the same rules than the web interface,koke,markjaquith,"If you have upload_space_check_disabled=true and fileupload_maxk=0, from the dahsboard (at least with the flash uploader) it means no limits, but from xmlrpc every upload fails

The first calls wp_handle_upload, which has a filter check_upload_size, and it checks the space limit check:
{{{
if ( get_site_option( 'upload_space_check_disabled' ) )
    return $file;
}}}

However, xmlrpc uses wp_upload_bits, which has a filter upload_is_file_too_big, which only checks fileupload_maxk",defect (bug),closed,normal,3.5,XML-RPC,3.1,normal,fixed,3.2-early has-patch multisite mobile commit,daniloercoli westi josephscott
