Changeset 54637 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 10/18/2022 06:14:01 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r54482 r54637 114 114 */ 115 115 function get_blog_count( $network_id = null ) { 116 return (int)get_network_option( $network_id, 'blog_count' );116 return get_network_option( $network_id, 'blog_count' ); 117 117 } 118 118 … … 2564 2564 * @param int $space_allowed Upload quota in megabytes for the current blog. 2565 2565 */ 2566 return (int)apply_filters( 'get_space_allowed', $space_allowed );2566 return apply_filters( 'get_space_allowed', $space_allowed ); 2567 2567 } 2568 2568
Note: See TracChangeset
for help on using the changeset viewer.