horrible bug in the "post too long. click here to view the full text" truncating

This commit is contained in:
Michael Save 2012-01-06 06:40:26 +11:00
parent f21577fa5a
commit c519bd66f5

View File

@ -188,7 +188,7 @@
// List successfully closed tags
if(preg_match_all('/(<\/([\w]+))>/', $body, $closed_tags)) {
for($x=0;$x<count($closed_tags[0]);$x++) {
unset($tags[array_search($closed_tags[1][$x], $tags)]);
unset($tags[array_search($closed_tags[2][$x], $tags)]);
}
}