Browse Source

fix pm_snippet bug

pull/40/head
Savetheinternet 13 years ago
parent
commit
ef125249b9
  1. 2
      inc/display.php

2
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);

Loading…
Cancel
Save