View Single Post
  #3  
Old 30th January 2010, 01:16
Vazze Vazze is offline
Member
 
Join Date: Jan 2010
P2P
Posts: 4
Default
If you get the [function.json-encode]: Invalid UTF-8 sequence in argument

Change: line 176/177
PHP Code:
$quotea json_encode(htmlspecialchars("Re: $arrq[subject]"));
$quoteb json_encode("<<<@!1!@>>>"); 
To

PHP Code:
       $quotea utf8_encode(htmlspecialchars("Re: $arrq[subject]"));
       
$quoteb utf8_encode("<<<@!2!@>>>"); 
Yeah, the PHP "quote" is wrong, but you'll only change the json_encode to utf8_encode and you'll be set.
Reply With Quote