diff --git a/src/wp-includes/class-phpass.php b/src/wp-includes/class-phpass.php
index 5411b364839..b3126f0aeeb 100644
a
|
b
|
function gensalt_blowfish($input) |
173 | 173 | $itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; |
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((int)(ord('0') + $this->iteration_count_log2 % 10)); |
178 | 178 | $output .= '$'; |
179 | 179 | |
180 | 180 | $i = 0; |