Оказывается time(-1) = time().

This commit is contained in:
2023-02-01 12:14:21 +02:00
parent acf6a2d167
commit 00c76de9d5
5 changed files with 3 additions and 8 deletions
-2
View File
@@ -76,7 +76,6 @@ if ($needle == $sign) {
$chatDto->setRoom($user['room']);
$chatDto->setTo($user['login']);
$chatDto->setText($r);
$chatDto->setTime(-1);
$chatDto->setType(5);
(new Chat())->sendMsg($chatDto);
@@ -103,7 +102,6 @@ if ($needle == $sign) {
$chatDto->setRoom($referal['room']);
$chatDto->setTo($referal['login']);
$chatDto->setText($r);
$chatDto->setTime(-1);
$chatDto->setType(5);
(new Chat())->sendMsg($chatDto);
}