pridany flow diagram pre BUG,

aktualizovany v README Technologie, struktura a API endpointy
This commit is contained in:
2025-05-15 11:09:09 +02:00
parent a02bdb4cbe
commit 5250a6d279
5 changed files with 142 additions and 10 deletions

View File

@ -235,7 +235,8 @@ function attachmentUpdate($attachment_id, $attachment_content) {
global $db;
if (strlen(trim($attachment_content)) <= 0) return attachmentDelete($attachment_id);
$stm = $db->update('attachments', [
'attachment_content' => $attachment_content
'attachment_content' => $attachment_content,
'updated_dt' => date('Y-m-d H:i:s')
], [
'attachment_id' => $attachment_id
]);