|
@@ -133,8 +133,8 @@ class EmailProc {
|
|
|
$mail = self::getMail($zoneid, $uid, $mailId);
|
|
|
$mail->readts = now();
|
|
|
self::updateMail($zoneid, $uid, $mail); # 更新邮件数据
|
|
|
- self::logMailReaded(array($mailId), $uid, $zoneid); # 更新数据库中邮件的read记录
|
|
|
- return Resp::ok(array("rewardstr" => $mail->appendix));
|
|
|
+ self::logMailReaded(array($mailId), $uid, $zoneid); # 更新数据库中邮件的read记录
|
|
|
+ return Resp::ok(array());
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -157,7 +157,7 @@ class EmailProc {
|
|
|
$mail->drawedts = now(); # 更新领取时间戳
|
|
|
self::updateMail($zoneid, $uid, $mail); # 回写邮件数据
|
|
|
if ($mail->sender_name == '系统') {
|
|
|
- TaskProc::OnDrawSysMail($mail->sender_uid);
|
|
|
+ //TaskProc::OnDrawSysMail($mail->sender_uid);
|
|
|
}
|
|
|
self::logMailDrawed(array($mailId), $uid, $zoneid); # 更新数据库中邮件的领取记录
|
|
|
UserProc::updateUserInfo();
|