From: <Ex...@us...> - 2012-03-23 15:03:57
|
Revision: 5144 http://web-erp.svn.sourceforge.net/web-erp/?rev=5144&view=rev Author: ExsonQu Date: 2012-03-23 15:03:48 +0000 (Fri, 23 Mar 2012) Log Message: ----------- 23/3/2012 Exson: Fixed accounting period displayed abnormal in simplified Chinese language in Win OS. Reported by CQZ from webERP Chinese community QQ group. Modified Paths: -------------- trunk/includes/DateFunctions.inc Modified: trunk/includes/DateFunctions.inc =================================================================== --- trunk/includes/DateFunctions.inc 2012-03-23 14:52:18 UTC (rev 5143) +++ trunk/includes/DateFunctions.inc 2012-03-23 15:03:48 UTC (rev 5144) @@ -100,7 +100,7 @@ if($encode=='EUC-CN'){ return iconv('GB2312','UTF-8',$str); - }elseif($encode=='EUC-TW'){ + }elseif($encode=='EUC-TW' or $encode=='BIG-5'){ return iconv('BIG5','UTF-8', $str); }else{ return ucfirst($str); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |