Ticket #19538: 19538.diff
File 19538.diff, 518 bytes (added by , 13 years ago) |
---|
-
wp-admin/includes/ms.php
385 385 */ 386 386 function get_space_allowed() { 387 387 $space_allowed = get_option( 'blog_upload_space' ); 388 if ( $space_allowed === false)388 if ( empty( $space_allowed ) ) 389 389 $space_allowed = get_site_option( 'blog_upload_space' ); 390 390 if ( empty( $space_allowed ) || !is_numeric( $space_allowed ) ) 391 391 $space_allowed = 50;