Modifies inline image attachment rendering to provide a link to the image itself. --- old/Sources/Subs.php 2025-02-28 07:33:43.973736879 +0000 +++ new/Sources/Subs.php 2025-03-23 06:17:03.956035213 +0000 @@ -1769,14 +1769,16 @@ // Image. if (!empty($currentAttachment['is_image'])) { + $returnContext .= ''; if (empty($params['{width}']) && empty($params['{height}'])) - $returnContext .= ''; + $returnContext .= ''; else { $width = !empty($params['{width}']) ? ' width="' . $params['{width}'] . '"': ''; $height = !empty($params['{height}']) ? 'height="' . $params['{height}'] . '"' : ''; $returnContext .= ''; } + $returnContext .= ''; } // Video. elseif (strpos($currentAttachment['mime_type'], 'video/') === 0)