mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
fixes for warning about unsupported charset
This commit is contained in:
parent
c5871088ca
commit
73d8277b40
@ -245,10 +245,10 @@
|
||||
if ($from == 'ascii') $from = 'iso-8859-1';
|
||||
//echo "<p>autodetected charset of '$data' = '$from'</p>\n";
|
||||
}
|
||||
/* php does not seem to support gb2312
|
||||
/* php does not seem to support gb2312 and big5
|
||||
but seems to be able to decode it as another charset
|
||||
*/
|
||||
if(strtolower($from) == 'gb2312')
|
||||
if(strtolower($from) == 'gb2312' || strtolower($from) == 'big5')
|
||||
{
|
||||
$from = mb_detect_encoding($data);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user