Browse Source

Merge pull request #102 from ctrlcctrlv/master

Fix truncation issues once and for all
pull/40/head
Michael 11 years ago
parent
commit
31a21a5957
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1494,7 +1494,7 @@ function markup(&$body, $track_cites = false) {
}
function utf8tohtml($utf8) {
return mb_encode_numericentity(htmlspecialchars($utf8, ENT_NOQUOTES, 'UTF-8'), array(0x80, 0xffff, 0, 0xffff), 'UTF-8');
return htmlspecialchars($utf8, ENT_NOQUOTES, 'UTF-8');
}
function buildThread($id, $return=false, $mod=false) {

Loading…
Cancel
Save