mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 15:18:58 +01:00
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
1ba36a6ca5
commit
3397b87aad
@ -355,7 +355,7 @@
|
|||||||
foreach($categories as $cat_id) {
|
foreach($categories as $cat_id) {
|
||||||
if($catData = $egwCategories->return_single($cat_id)) {
|
if($catData = $egwCategories->return_single($cat_id)) {
|
||||||
if(!empty($value)) $value .= '; ';
|
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