Changeset 34603 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 09/26/2015 07:48:57 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r34455 r34603 2373 2373 */ 2374 2374 function get_upload_space_available() { 2375 $space_allowed = get_space_allowed() * 1024 * 1024; 2375 $allowed = get_space_allowed(); 2376 if ( $allowed < 0 ) { 2377 $allowed = 0; 2378 } 2379 $space_allowed = $allowed * 1024 * 1024; 2376 2380 if ( get_site_option( 'upload_space_check_disabled' ) ) 2377 2381 return $space_allowed;
Note: See TracChangeset
for help on using the changeset viewer.