mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
Improve support of BB Funambol Client
This commit is contained in:
parent
e7c292d683
commit
68cf0235e2
@ -885,17 +885,21 @@ class Horde_SyncML_State {
|
||||
$_type = str_replace('./','',$type);
|
||||
switch (strtolower($_type)) {
|
||||
case 'contacts':
|
||||
case 'contact':
|
||||
case 'card':
|
||||
return 'text/vcard';
|
||||
break;
|
||||
|
||||
case 'notes':
|
||||
case 'note':
|
||||
return 'text/x-vnote';
|
||||
break;
|
||||
|
||||
case 'calendar':
|
||||
case 'events':
|
||||
case 'event':
|
||||
case 'tasks':
|
||||
case 'task':
|
||||
case 'jobs':
|
||||
case 'caltasks':
|
||||
return 'text/calendar';
|
||||
@ -933,17 +937,21 @@ class Horde_SyncML_State {
|
||||
switch(strtolower($_type))
|
||||
{
|
||||
case 'contacts':
|
||||
case 'contact':
|
||||
case 'card':
|
||||
return 'contacts';
|
||||
|
||||
case 'notes':
|
||||
case 'note':
|
||||
return 'notes';
|
||||
|
||||
case 'tasks':
|
||||
case 'task':
|
||||
case 'jobs':
|
||||
return 'tasks';
|
||||
|
||||
case 'events':
|
||||
case 'event':
|
||||
case 'calendar':
|
||||
return 'calendar';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user