From: fabrixxm Date: Tue, 2 Jun 2015 16:38:16 +0000 (+0200) Subject: close correctly `span` tag in `oembed_format_object()` X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e028263ca8e1585ead2ba5ac87168fda607af0a9;p=friendica.git close correctly `span` tag in `oembed_format_object()` fix issue #1612 --- diff --git a/include/oembed.php b/include/oembed.php index 6fc9817299..26746af51c 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -193,8 +193,9 @@ function oembed_format_object($j){ } else { // add for html2bbcode conversion $ret .= "$embedurl"; - $ret.="
"; + $ret .= "
"; } + $ret.=""; return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret)); }