multisite_over_quota_message()
Displays the out of storage quota message in Multisite.
Source
File: wp-admin/includes/media.php
function multisite_over_quota_message() {
echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>';
}
Changelog
Version | Description |
---|---|
WP-3.5.0 | Introduced. |