Don't require closing tag for tags that don't need it.
This commit is contained in:
parent
df667896cd
commit
46f50248f0
@ -190,8 +190,11 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
|
||||
// remove broken HTML entity at the end (if existent)
|
||||
$body = preg_replace('/&[^;]+$/', '', $body);
|
||||
|
||||
$tags_no_close_needed = array("colgroup", "dd", "dt", "li", "optgroup", "option", "p", "tbody", "td", "tfoot", "th", "thead", "tr", "br", "img");
|
||||
|
||||
// Close any open tags
|
||||
foreach ($tags as &$tag) {
|
||||
if (!in_array($tag, $tags_no_close_needed))
|
||||
$body .= "</{$tag}>";
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user