From ef125249b9a25e3a973b297db21457c78ad81124 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Mon, 10 Oct 2011 21:49:38 +1100 Subject: [PATCH] fix pm_snippet bug --- inc/display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/display.php b/inc/display.php index 05f9aeec..4377ea3c 100644 --- a/inc/display.php +++ b/inc/display.php @@ -114,7 +114,7 @@ $body = strip_tags($body); // Unescape HTML characters, to avoid splitting them in half - $body = html_entity_decode($body, ENT_NOQUOTES, 'UTF-8'); + $body = html_entity_decode($body, ENT_COMPAT, 'UTF-8'); // calculate strlen() so we can add "..." after if needed $strlen = strlen($body);