From: Hypolite Petovan Date: Thu, 15 Feb 2018 01:25:23 +0000 (-0500) Subject: Fix undeclared variable in Content\Text\BBCode X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ee380c3149febcc0eba327313e38e420ad9e84e2;p=friendica.git Fix undeclared variable in Content\Text\BBCode --- diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 2ea15b0641..71daa1d145 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1135,7 +1135,7 @@ class BBCode break; case 4: - $headline .= '
' . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + $headline = '
' . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); $headline .= L10n::t('%2$s %3$s', $link, $userid, $posted); $headline .= ":
";