修改提交驗證 Email 請求間隔時間
我覺得24小時似乎太長了
而且很多會員也是如此覺得
開啟 messages.lang.php
找'email_verify_invalid' => '您在 24 小時內只能提交一次驗證 Email 請求,請返回。', 取代為'email_verify_invalid' => '您在 $verifyh 小時內只能提交一次驗證 Email 請求,請返回。', 開啟 member.php
找list($dateline, $type, $idstring) = explode("t", $member['authstr']);
if($type == 2 && $timestamp - $dateline < 86400) {取代為$verifyh = 1;
list($dateline, $type, $idstring) = explode("t", $member['authstr']);
if($type == 2 && $timestamp - $dateline < 3600 * $verifyh) {
showmessage('email_verify_invalid');
} |