Mail: Set the "reply" value when it is a reply

This commit is contained in:
Michael 2019-05-09 20:52:52 +00:00
parent 7c3a19be59
commit d9f6a58229
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ class Mail
{
$user = User::getById($msg['uid']);
if (!isset($msg['reply'])) {
$msg['reply'] = DBA::exists('mail', ['parent-uri' => $msg['parent-uri']]);
}
if (empty($msg['convid'])) {
$mail = DBA::selectFirst('mail', ['convid'], ["`convid` != 0 AND `parent-uri` = ?", $msg['parent-uri']]);
if (DBA::isResult($mail)) {