Patches post v.0.25.1
1. Download the updated (osCommerce connector) connector.inc.php file attached to the following thread.
http://groups.google.com/group/CK-ERP-en/browse_thread/thread/936618f3f8...
Use the downloaded file to overwrite the existing file located at .../ck-api/osc22/connector.inc.php within an (osCommerce 2.2rc1 + CK-ERP v.0.25.1) environment. If your environment is not running osCommerce, this patch is not necessary.
=====================================================================================================
=====================================================================================================
=====================================================================================================
Patches post v.0.19.1
1. Patch for XOOPS users utilizing xlanguage to provide multilingual functionalities -
Comment out line 119 - 126 of ....../ck-api/xoops/connector.inc.php,
line 119 switch ($ckapi['hostsys']['guilang']) :
line 120 case 'zh-hk' : $tmp1=iconv('big5','utf8',$tmp.'');
line 121 list($tmp)=explode('',$tmp1); break ;
line 122 case 'zh-cn' : $tmp1=iconv('gb18030','utf8',$tmp.'');
line 123 list($tmp)=explode('',$tmp1); break ;
line 124 case 'fr-fr' : $tmp=iconv('iso-8859-1','utf8',$tmp); break ;
line 125 case 'de-de' : $tmp=iconv('iso-8859-1','utf8',$tmp); break ;
line 126 endswitch ;
2. Patch against syntax error within ...../ck-payroll/inc/class.bulkpayroll.inc.php -
delete (circa line 136),
$dramt = -$amount ; $unit = addslahses($unit) ;
replace with,
$dramt = -$amount ; $unit = addslashes($unit) ;
*****************************************************************************************************
*****************************************************************************************************