Browse Source

pm_snippet bugfix (incorrectly double-escaped HTML entity)

pull/40/head
Savetheinternet 13 years ago
parent
commit
ea2e4f12f8
  1. 7
      inc/display.php

7
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 '<em>' . utf8tohtml($body) . '</em>';
return '<em>' . utf8tohtml($body) . ($strlen > $len ? '&hellip;' : '') . '</em>';
}
function capcode($cap) {

Loading…
Cancel
Save