Browse Source

Fix broken entity removal in post truncation.

pull/40/head
Macil Tech 11 years ago
parent
commit
b6fc7ca89d
  1. 2
      inc/display.php

2
inc/display.php

@ -204,7 +204,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) {
}
} else {
// remove broken HTML entity at the end (if existent)
$body = preg_replace('/&[^;]+$/', '', $body);
$body = preg_replace('/&[^;]*$/', '', $body);
}
$body .= '<span class="toolong">Post too long. Click <a href="' . $url . '">here</a> to view the full text.</span>';

Loading…
Cancel
Save