observe fileupload_maxk in media uploader, see #12853

git-svn-id: https://develop.svn.wordpress.org/trunk@14694 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ron Rennick 2010-05-16 20:09:56 +00:00
parent 07bca9ef99
commit c77318be51
1 changed files with 4 additions and 1 deletions

View File

@ -408,9 +408,12 @@ function is_upload_space_available() {
/*
* @since 3.0.0
*
* @return int of upload size limit in bytes
*/
function upload_size_limit_filter( $size ) {
return min( $size, get_upload_space_available() );
$fileupload_maxk = 1024 * get_site_option( 'fileupload_maxk', 1500 );
return min( $size, $fileupload_maxk, get_upload_space_available() );
}
/**
* Determines if there is any upload space left in the current blog's quota.