refactor and errors

This commit is contained in:
2023-11-05 04:46:07 +02:00
parent def933dca4
commit 3e753c8b93
125 changed files with 1353 additions and 1435 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ class Chat
public static function setCurrentTimeById(int $messageId): void
{
Db::sql('update chat set time = unix_timestamp() where id = ?)', [$messageId]);
Db::sql('update chat set time = unix_timestamp() where id = ?', [$messageId]);
}
public static function setCurrentTimeAndIdById(int $messageId, int $newMessageId): void