From 9f86465fb97effb601dc2ae36ee1301a654b1dce Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 25 Oct 2019 23:23:38 +0000 Subject: [PATCH] Images: Show the description as title --- src/Content/Text/BBCode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);