Changeset 54080 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 09/06/2022 11:26:45 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r53251 r54080 114 114 */ 115 115 function get_blog_count( $network_id = null ) { 116 return get_network_option( $network_id, 'blog_count' );116 return (int) get_network_option( $network_id, 'blog_count' ); 117 117 } 118 118 … … 2655 2655 * @param int $space_allowed Upload quota in megabytes for the current blog. 2656 2656 */ 2657 return apply_filters( 'get_space_allowed', $space_allowed );2657 return (int) apply_filters( 'get_space_allowed', $space_allowed ); 2658 2658 } 2659 2659
Note: See TracChangeset
for help on using the changeset viewer.