Link preview text and description added to search text.

This commit is contained in:
Michael 2024-01-13 15:46:37 +00:00
parent a30b9e6927
commit 1eeef896fe
1 changed files with 4 additions and 0 deletions

View File

@ -258,6 +258,10 @@ class BBCode
// Add images because of possible alt texts
if (!empty($uri_id)) {
$text = Post\Media::addAttachmentsToBody($uri_id, $text, [Post\Media::IMAGE]);
foreach (Post\Media::getByURIId($uri_id, [Post\Media::HTML]) as $media) {
$text .= ' ' . $media['name'] . ' ' . $media['description'];
}
}
if (empty($text)) {