Changeset 57648 for trunk/src/wp-includes/class-wp-network-query.php
- Timestamp:
- 02/17/2024 03:22:37 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network-query.php
r55526 r57648 270 270 271 271 if ( $this->found_networks && $this->query_vars['number'] ) { 272 $this->max_num_pages = ceil( $this->found_networks / $this->query_vars['number'] );272 $this->max_num_pages = (int) ceil( $this->found_networks / $this->query_vars['number'] ); 273 273 } 274 274
Note: See TracChangeset
for help on using the changeset viewer.