Changeset 55310
- Timestamp:
- 02/13/2023 09:06:50 AM (20 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-phpass.php
r51008 r55310 174 174 175 175 $output = '$2a$'; 176 $output .= chr( ord('0') + $this->iteration_count_log2 / 10);177 $output .= chr( ord('0') + $this->iteration_count_log2 % 10);176 $output .= chr((int)(ord('0') + $this->iteration_count_log2 / 10)); 177 $output .= chr((ord('0') + $this->iteration_count_log2 % 10)); 178 178 $output .= '$'; 179 179
Note: See TracChangeset
for help on using the changeset viewer.