Changeset 49108 for trunk/src/wp-includes/class-wp-network-query.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network-query.php
r48986 r49108 261 261 if ( $this->query_vars['count'] ) { 262 262 // $network_ids is actually a count in this case. 263 return intval( $network_ids );263 return (int) $network_ids; 264 264 } 265 265 … … 470 470 471 471 if ( $this->query_vars['count'] ) { 472 return intval( $wpdb->get_var( $this->request ));472 return (int) $wpdb->get_var( $this->request ); 473 473 } 474 474
Note: See TracChangeset
for help on using the changeset viewer.