From: Michael Date: Fri, 25 Oct 2019 23:23:38 +0000 (+0000) Subject: Images: Show the description as title X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9f86465fb97effb601dc2ae36ee1301a654b1dce;p=friendica.git Images: Show the description as title --- diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 75f5d506e1..0dbac8b771 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -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 '' . $matches[2] . ''; + return '' . $matches[2] . ''; }, $text);