下面我们提供下邮箱重置密码参数失败的解决方法,如果有最新版本没有发现这个问题的,就可以不做处理。
修改member_getpasswd.php和member_getpasswd.php
添加按钮代码获取sign /template/default/member/getpasswd.htm
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid">
改成
<form method="post" autocomplete="off" action="member.php?mod=getpasswd&uid=$uid&id=$hashid&sign=$sign">
/source/module/member/member_getpasswd.php
$hashid = $_GET['id']; $uid = $_GET['uid'];
改成
$hashid = $_GET['id'];$uid = $_GET['uid'];$sign = $_GET['sign'];