Unbalanced html fixed

This commit is contained in:
Michael 2018-01-11 22:34:56 +00:00
parent e18e081b47
commit c0eecfc55f
1 changed files with 2 additions and 1 deletions

View File

@ -199,7 +199,6 @@ class OEmbed
break;
}
$ret .= '</div>';
// add link to source if not present in "rich" type
if ($j->type != 'rich' || !strpos($j->html, $embedurl)) {
$ret .= '<h4>';
@ -238,6 +237,8 @@ class OEmbed
$ret .= '<a href="' . $embedurl . '" rel="oembed">' . $j->title . '</a>';
}
$ret .= '</div>';
$ret = str_replace("\n", "", $ret);
return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
}