Browse Source

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

pull/40/head
Michael Save 12 years ago
parent
commit
c519bd66f5
  1. 2
      inc/display.php

2
inc/display.php

@ -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)]);
}
}

Loading…
Cancel
Save