Skip to content

Commit

Permalink
Fix web service_contact.php civilite_id vs civility_id
Browse files Browse the repository at this point in the history
  • Loading branch information
FHenry committed Oct 26, 2013
1 parent ec8cee4 commit 6985a4f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions htdocs/webservices/server_contact.php
Expand Up @@ -300,7 +300,7 @@ function getContact($authentication,$id,$ref='',$ref_ext='')
'ref_propal' => $contact->ref_propal,
'user_id' => $contact->user_id,
'user_login' => $contact->user_login,
'civility_id' => $contact->civility_id
'civilite_id' => $contact->civility_id
);

//Retreive all extrafield for thirdsparty
Expand Down Expand Up @@ -379,7 +379,7 @@ function createContact($authentication,$contact)
$newobject=new Contact($db);

$newobject->id=$contact['id'];
$newobject->civility_id=$contact['civility_id'];
$newobject->civilite_id=$contact['civility_id'];
$newobject->lastname=$contact['lastname'];
$newobject->firstname=$contact['firstname'];
$newobject->address=$contact['address'];
Expand Down Expand Up @@ -522,7 +522,7 @@ function getContactsForThirdParty($authentication,$idthirdparty)
$linescontact[]=array(
'id' => $contact->id,
'ref' => $contact->ref,
'civility_id' => $contact->civility_id?$contact->civility_id:'',
'civility_id' => $contact->civilite_id?$contact->civilite_id:'',
'lastname' => $contact->lastname?$contact->lastname:'',
'firstname' => $contact->firstname?$contact->firstname:'',
'address' => $contact->address?$contact->address:'',
Expand Down Expand Up @@ -653,6 +653,8 @@ function updateContact($authentication,$contact)
$object->fax=$contact['fax'];
$object->email=$contact['email'];

$object->civilite_id=$contact['civility_id'];


//Retreive all extrafield for contact
// fetch optionals attributes and labels
Expand Down

0 comments on commit 6985a4f

Please sign in to comment.