Changeset 46232 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 09/21/2019 05:40:58 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r45932 r46232 2427 2427 2428 2428 /** 2429 * Returns the space used by the current blog.2429 * Returns the space used by the current site. 2430 2430 * 2431 2431 * @since 3.5.0 2432 2432 * 2433 * @return int Used space in megabytes 2433 * @return int Used space in megabytes. 2434 2434 */ 2435 2435 function get_space_used() { 2436 2436 /** 2437 * Filters the amount of storage space used by the current site .2437 * Filters the amount of storage space used by the current site, in megabytes. 2438 2438 * 2439 2439 * @since 3.5.0 2440 2440 * 2441 * @param int| bool$space_used The amount of used space, in megabytes. Default false.2441 * @param int|false $space_used The amount of used space, in megabytes. Default false. 2442 2442 */ 2443 2443 $space_used = apply_filters( 'pre_get_space_used', false );
Note: See TracChangeset
for help on using the changeset viewer.