Ticket #23650: 23650.diff
| File 23650.diff, 547 bytes (added by jkudish, 3 months ago) |
|---|
-
wp-includes/ms-functions.php
1930 1930 $space_allowed = get_site_option( 'blog_upload_space' ); 1931 1931 1932 1932 if ( empty( $space_allowed ) || ! is_numeric( $space_allowed ) ) 1933 $space_allowed = 50;1933 $space_allowed = apply_filters( 'get_space_allowed_default', 50 ); 1934 1934 1935 return $space_allowed;1935 return apply_filters( 'get_space_allowed', $space_allowed ); 1936 1936 } 1937 1937 1938 1938 /**
