Changeset 57648 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 02/17/2024 03:22:37 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r57644 r57648 320 320 321 321 if ( ! $args['total_pages'] && $args['per_page'] > 0 ) { 322 $args['total_pages'] = ceil( $args['total_items'] / $args['per_page'] );322 $args['total_pages'] = (int) ceil( $args['total_items'] / $args['per_page'] ); 323 323 } 324 324
Note: See TracChangeset
for help on using the changeset viewer.