Added after 22 minutes:
i just fixed it in my demo so you guys should fix it yall selves lol open process.php and edit the following:
PHP Code:
// Find this line
$_human = (int) Arr::get($_SESSION, 'valid_human', 0, true);
// Change to ...
$_human = (int) Arr::get($_SESSION, 'valid_human');
// Then find this line...
$_SESSION['valid_human'] = $_human++;
// Change to...
$_SESSION['valid_human'] = $_human + 1;
Leave a comment: