From ae76ddb0795cbeb1c7b8f7b2d203a518fc828403 Mon Sep 17 00:00:00 2001 From: Michael Save Date: Sat, 11 Feb 2012 18:53:27 +1100 Subject: [PATCH] Fixed issue #34: "HTML entities can be cut in half when truncating posts" --- inc/display.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/inc/display.php b/inc/display.php index 7f0226d4..b8a91676 100644 --- a/inc/display.php +++ b/inc/display.php @@ -156,6 +156,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) { global $config; + if($max_lines === false) $max_lines = $config['body_truncate']; if($max_chars === false) @@ -192,11 +193,18 @@ } } + // remove broken HTML entity at the end (if existent) + $body = preg_replace('/&[^;]+$/', '', $body); + // Close any open tags foreach($tags as &$tag) { $body .= ""; } + } else { + // remove broken HTML entity at the end (if existent) + $body = preg_replace('/&[^;]+$/', '', $body); } + $body .= 'Post too long. Click here to view the full text.'; }