Fix folder ID creation, use underline instead of dashes (dash has a special meaning in addressbook)
This commit is contained in:
parent
f02613a222
commit
f27fd97bd7
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ class rcube_kolab
|
||||||
*/
|
*/
|
||||||
public static function folder_id($folder)
|
public static function folder_id($folder)
|
||||||
{
|
{
|
||||||
return asciiwords(strtr($folder, '/.', '--'));
|
return asciiwords(strtr($folder, '/.-', '___'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue