mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-12-01 13:24:10 +01:00
Fixed error in OC_Contacts_VCard::addFromDAVData as pointed out by Guillaume ZITTA
This commit is contained in:
parent
6310ea5f07
commit
0506fa9856
@ -228,7 +228,7 @@ class OC_Contacts_VCard{
|
||||
* @param string $uri the uri of the card, default based on the UID
|
||||
* @return insertid on success or null if no card.
|
||||
*/
|
||||
public static function add($aid, $card, $uri=null){
|
||||
public static function add($aid, OC_VObject $card, $uri=null){
|
||||
if(is_null($card)){
|
||||
OC_Log::write('contacts','OC_Contacts_VCard::add. No vCard supplied', OC_Log::ERROR);
|
||||
return null;
|
||||
@ -267,7 +267,7 @@ class OC_Contacts_VCard{
|
||||
*/
|
||||
public static function addFromDAVData($id,$uri,$data){
|
||||
$card = OC_VObject::parse($data);
|
||||
return self::add($id, $data, $uri);
|
||||
return self::add($id, $card, $uri);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user