1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

fix float division deprecation warning breaking captcha.php json

This commit is contained in:
eli 2023-09-07 05:45:14 -10:00 committed by GitHub
parent fbc2464c96
commit c3c7bc4fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ class CzaksCaptcha {
function mutate_sizes() { function mutate_sizes() {
foreach ($this->content as &$v) { foreach ($this->content as &$v) {
if (!isset ($v['font-size'])) if (!isset ($v['font-size']))
$v['font-size'] = rand($this->height/3 - 4, $this->height/3 + 8); $v['font-size'] = rand(intval($this->height/3) - 4, intval($this->height/3) + 8);
} }
} }
function mutate_positions() { function mutate_positions() {