fixed missing argument error on search (e.g. slowsync), sorry - my fault

This commit is contained in:
Christian Binder 2009-11-18 11:10:36 +00:00
parent d4b0e572a1
commit bde63a01f9

View File

@ -395,7 +395,7 @@ class addressbook_vcal extends addressbook_bo
{ {
$result = false; $result = false;
if (($contact = $this->vcardtoegw($_vcard))) if (($contact = $this->vcardtoegw($_vcard, $contentID)))
{ {
if ($contentID) if ($contentID)
{ {
@ -415,7 +415,7 @@ class addressbook_vcal extends addressbook_bo
if (is_array($_supportedFields)) $this->supportedFields = $_supportedFields; if (is_array($_supportedFields)) $this->supportedFields = $_supportedFields;
} }
function vcardtoegw($_vcard, $_abID) function vcardtoegw($_vcard, $_abID=null)
{ {
// the horde class does the charset conversion. DO NOT CONVERT HERE. // the horde class does the charset conversion. DO NOT CONVERT HERE.
// be as flexible as possible // be as flexible as possible