Make WordPress Core


Ignore:
Timestamp:
02/17/2024 03:22:37 PM (2 years ago)
Author:
swissspidy
Message:

General: Consistently cast return value to int in functions that use ceil().

The return value of ceil() is still of type float as the value range of float is usually bigger than that of int.

Props crstauf, audrasjb.
Fixes #58683.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php

    r56586 r57648  
    153153                $page      = (int) $request['page'];
    154154                $per_page  = (int) $request['per_page'];
    155                 $max_pages = ceil( $total / $per_page );
     155                $max_pages = (int) ceil( $total / $per_page );
    156156
    157157                if ( $page > $max_pages && $total > 0 ) {
Note: See TracChangeset for help on using the changeset viewer.