Warning: This function has been deprecated. Use is_upload_space_available() instead.

wpmu_checkAvailableSpace()

Determines if the available space defined by the admin has been exceeded by the user.


Description Description

See also See also


Top ↑

Source Source

File: wp-admin/includes/ms-deprecated.php

function wpmu_checkAvailableSpace() {
	_deprecated_function(__FUNCTION__, '3.0.0', 'is_upload_space_available()' );

	if ( !is_upload_space_available() )
		wp_die( __('Sorry, you must delete files before you can upload any more.') );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.