I'm getting a recursive error that massively filling my error log on my server. Thoughts?
[11-Apr-2008 07:42:02] PHP Warning: cannot yet handle MBCS in html_entity_decode()! in /home/strumpet/public_html/include/functions_trackbacks.inc.php on line 552
Thanks in advance.
Brian
Possible Trackback issue
-
bdconnolly
- Regular
- Posts: 140
- Joined: Tue Apr 04, 2006 9:37 pm
not that I have any idea what I'm doin' but in accordance with the forum post, http://tinyurl.com/68uya9 , rewrote line line 552
$body = html_entity_decode(strip_tags($body), ENT_COMPAT, LANG_CHARSET);
to read:
$body = strip_tags($body);
error stopped but not certain what that means.
Anyone?
Garvin?
$body = html_entity_decode(strip_tags($body), ENT_COMPAT, LANG_CHARSET);
to read:
$body = strip_tags($body);
error stopped but not certain what that means.
Anyone?
Garvin?