diff options
Diffstat (limited to 'templates/note.php')
| -rw-r--r-- | templates/note.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/note.php b/templates/note.php index c69531b..f0f289c 100644 --- a/templates/note.php +++ b/templates/note.php @@ -82,7 +82,8 @@ if ($user != null) { <?php foreach ($note->attachments as $attachment): ?> <div> <?php if (str_starts_with($attachment->type, 'image/')): ?> - <img src="<?= $attachment->href ?>"> + <img src="<?= $attachment->href ?>" alt="<?= $attachment->description ?? '' ?>" + title="<?= $attachment->description ?? '' ?>"> <?php else: ?> <a class="file" href="<?= $attachment->href ?>" target="_blank"> <span class="material-symbols attach-file"></span> |
