Changeset 57648 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 02/17/2024 03:22:37 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r57342 r57648 471 471 472 472 if ( $this->found_comments && $this->query_vars['number'] ) { 473 $this->max_num_pages = ceil( $this->found_comments / $this->query_vars['number'] );473 $this->max_num_pages = (int) ceil( $this->found_comments / $this->query_vars['number'] ); 474 474 } 475 475
Note: See TracChangeset
for help on using the changeset viewer.