forked from extern/egroupware
categories are not converted to UTF-8 in getSIF
At getSIF in calendar/inc/class.sifcalendar.inc.php, categories are not converted to UTF-8. Therefore, when we try to sync our PDA & eGW via SyncML, categories not stored in UTF-8 become unreadable on the synced device. patch contributed by Heiga Zen
This commit is contained in:
parent
6227931881
commit
12c26c3bb9
@ -333,7 +333,7 @@
|
||||
foreach($categories as $cat_id) {
|
||||
if($catData = $egwCategories->return_single($cat_id)) {
|
||||
if(!empty($value)) $value .= '; ';
|
||||
$value .= $catData[0]['name'];
|
||||
$value .= $GLOBALS['egw']->translation->convert($catData[0]['name'], $sysCharSet, 'utf-8');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user