From 948dfe8555e06b2f900a92678faff918c2ab95b6 Mon Sep 17 00:00:00 2001 From: Macil Tech Date: Mon, 14 Jan 2013 19:11:55 -0600 Subject: [PATCH] Don't truncate inside an HTML comment! --- inc/display.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/inc/display.php b/inc/display.php index 6394c711..f4e1151e 100644 --- a/inc/display.php +++ b/inc/display.php @@ -155,6 +155,11 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) { $max_lines = $config['body_truncate']; if ($max_chars === false) $max_chars = $config['body_truncate_char']; + + // We don't want to risk truncating in the middle of an HTML comment. + // It's easiest just to remove them all first. + $body = preg_replace('//s', '', $body); + $original_body = $body; $lines = substr_count($body, '
');