12-10-2010, 07:06 AM
For some specific languages with special characters in "day of week"-names you have to change inc.Calendar.php - change line:
$dayNames[] = substr($dn,0,2);
to:
$dayNames[] = mb_substr($dn,0,2,"utf-8");
This requires mbstring library (Multibyte support) loaded in PHP.
Patch for LetoDMS 2.0.2 is in attachment.
$dayNames[] = substr($dn,0,2);
to:
$dayNames[] = mb_substr($dn,0,2,"utf-8");
This requires mbstring library (Multibyte support) loaded in PHP.
Patch for LetoDMS 2.0.2 is in attachment.