After [34577], alter wp_xmlrpc_server::mw_newMediaObject()
to check upload space in multisite.
See #21292. git-svn-id: https://develop.svn.wordpress.org/trunk@34603 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7cd7d4622c
commit
591b743362
@ -5721,6 +5721,11 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||||||
return $this->error;
|
return $this->error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( is_multisite() && upload_is_user_over_quota( false ) ) {
|
||||||
|
$this->error = new IXR_Error( 401, __( 'Sorry, you have used your space allocation.' ) );
|
||||||
|
return $this->error;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter whether to preempt the XML-RPC media upload.
|
* Filter whether to preempt the XML-RPC media upload.
|
||||||
*
|
*
|
||||||
|
@ -2372,7 +2372,11 @@ function get_space_allowed() {
|
|||||||
* @return int of upload space available in bytes
|
* @return int of upload space available in bytes
|
||||||
*/
|
*/
|
||||||
function get_upload_space_available() {
|
function get_upload_space_available() {
|
||||||
$space_allowed = get_space_allowed() * 1024 * 1024;
|
$allowed = get_space_allowed();
|
||||||
|
if ( $allowed < 0 ) {
|
||||||
|
$allowed = 0;
|
||||||
|
}
|
||||||
|
$space_allowed = $allowed * 1024 * 1024;
|
||||||
if ( get_site_option( 'upload_space_check_disabled' ) )
|
if ( get_site_option( 'upload_space_check_disabled' ) )
|
||||||
return $space_allowed;
|
return $space_allowed;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user