Changes from branches/3.3/wp-admin/includes/ms.php at r19654 to trunk/wp-admin/includes/ms.php at r19314
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/ms.php
r19654 r19314 386 386 function get_space_allowed() { 387 387 $space_allowed = get_option( 'blog_upload_space' ); 388 389 if ( ! is_numeric( $space_allowed ) ) 388 if ( $space_allowed === false ) 390 389 $space_allowed = get_site_option( 'blog_upload_space' ); 391 392 if ( empty( $space_allowed ) || ! is_numeric( $space_allowed ) ) 390 if ( empty( $space_allowed ) || !is_numeric( $space_allowed ) ) 393 391 $space_allowed = 50; 394 392
Note: See TracChangeset
for help on using the changeset viewer.