13
first,
I regenerated template system_userform.html.
Because previously version didn't have
<input type="hidden" name="t" value="<{$mailpasswd_token}>" />
I can receive active code mail.
then,
I add a new line in lostpass.php:
$code = isset($_POST['code']) ? trim($_POST['code']) : $code;
after line 51:
$code = isset($_GET['code']) ? trim($_GET['code']) : '';
I think _GET is enough to get code value. But after I add _POST, everything went well.
?????
I don't know why
thank you ackbarr.
BTY, your lostpass.php is different from 2.0.10's final version, I think the final version is better