Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #56340


Ignore:
Timestamp:
08/05/2022 08:55:04 AM (20 months ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56340

    • Property Keywords has-patch php81 added
    • Property Milestone changed from Awaiting Review to 6.1
  • Ticket #56340 – Description

    initial v2  
    33
    44in
    5 ```
     5{{{
    66$output .= chr((ord('0') + $this->iteration_count_log2 / 10));
    7 ```
    8 - the fix is simple, change it from implicit conversion to explicit conversion:
    9 ```
     7}}}
     8the fix is simple, change it from implicit conversion to explicit conversion:
     9{{{
    1010$output .= chr((int)((ord('0') + $this->iteration_count_log2 / 10)));
    11 ```
     11}}}