Images: Show the description as title

This commit is contained in:
Michael 2019-10-25 23:23:38 +00:00
parent 2edccf9341
commit 9f86465fb9
1 changed files with 1 additions and 1 deletions

View File

@ -1552,7 +1552,7 @@ class BBCode extends BaseObject
function ($matches) use ($simple_html) {
$matches[1] = self::proxyUrl($matches[1], $simple_html);
$matches[2] = htmlspecialchars($matches[2], ENT_COMPAT);
return '<img src="' . $matches[1] . '" alt="' . $matches[2] . '">';
return '<img src="' . $matches[1] . '" alt="' . $matches[2] . '" title="' . $matches[2] . '">';
},
$text);