CzechBoy![]() 2007-03-05 10:53 | When I set Courrier to "Česká Pošta" (Czech Post) it displays as "eská Pošta" without first letter. I found out that already in couriers.php when I write "print_r($aData);exit;" after $aData = dbListCouriers( ); it displays it wrong... » Quick.Cart v2.xOldrich Svec |
CzechBoy![]() 2007-03-05 19:01 | So I have found that it is a bug in php when usign fgetcsv function. See here: http://bugs.php.net/bug.php?id=12127 and the solution is to setlocale in general.php. For czech language this works: setlocale(LC_ALL, "cs_CZ"); Oldrich Svec |