From ea2e4f12f83abb3a48accf1c739744aa009250d4 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sat, 8 Oct 2011 21:01:26 +1100 Subject: [PATCH] pm_snippet bugfix (incorrectly double-escaped HTML entity) --- inc/display.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inc/display.php b/inc/display.php index fe33f4c1..5f4cae6f 100644 --- a/inc/display.php +++ b/inc/display.php @@ -116,10 +116,13 @@ // Unescape HTML characters, to avoid splitting them in half $body = html_entity_decode_utf8($body); - $body = substr($body, 0, $len) . (strlen($body) > $len ? '…' : ''); + // calculate strlen() so we can add "..." after if needed + $strlen = strlen($body); + + $body = substr($body, 0, $len); // Re-escape the characters. - return '' . utf8tohtml($body) . ''; + return '' . utf8tohtml($body) . ($strlen > $len ? '…' : '') . ''; } function capcode($cap) {