remove the retard function html_entity_decode_utf8(). not sure why seisatsu added it in the first place.

This commit is contained in:
Savetheinternet 2011-10-10 21:06:39 +11:00
parent bf803e5d58
commit 85d37a55c3
2 changed files with 2 additions and 20 deletions

View file

@ -114,7 +114,7 @@
$body = strip_tags($body);
// Unescape HTML characters, to avoid splitting them in half
$body = html_entity_decode_utf8($body);
$body = html_entity_decode($body, ENT_NOQUOTES, 'UTF-8');
// calculate strlen() so we can add "..." after if needed
$strlen = strlen($body);