patch from Antoni Matamalas

fixes some problems with syncevolution
This commit is contained in:
Lars Kneschke 2006-11-20 07:56:03 +00:00
parent b15ced10a5
commit e344c13e62

View File

@ -837,7 +837,7 @@
//Syncevolution compatibility //Syncevolution compatibility
case 'patrick ohly': case 'patrick ohly':
$this->supportedFields = $defaultFields + array( $this->supportedFields = $defaultFields[1] + array(
'participants' => 'participants', 'participants' => 'participants',
'owner' => 'owner', 'owner' => 'owner',
'category' => 'category', 'category' => 'category',
@ -856,7 +856,7 @@
// the fallback for SyncML // the fallback for SyncML
default: default:
error_log("Client not found: $_productManufacturer $_productName"); error_log("Client not found: $_productManufacturer $_productName");
$this->supportedFields = $defaultFields; $this->supportedFields = $defaultFields[0];
break; break;
} }
} }