Closed GoogleCodeExporter closed 9 years ago
Fixed by changing:
if(!empty($params['charset'])) {
to
if(!empty($params['charset']) && mb_encoding_aliases($params['charset'])) {
Thank you for report!!!
Original comment by barbushin
on 10 May 2011 at 7:09
Thanks for the quick response but I get this now:
ErrorException [ Warning ]: mb_encoding_aliases(): Unknown encoding "3D"
Original comment by m...@roterman.com
on 10 May 2011 at 7:21
This seems to work:
if(!empty($params['charset'])) {
$data = iconv($params['charset'], $this->serverEncoding, $data);
}
Original comment by m...@roterman.com
on 10 May 2011 at 9:00
Done. I have used your code :)
if(!empty($params['charset'])) {
$data = iconv($params['charset'], $this->serverEncoding, $data);
}
Thank you!
Original comment by barbushin
on 10 May 2011 at 10:28
Original issue reported on code.google.com by
m...@roterman.com
on 10 May 2011 at 6:36