Other PR request:
- renamed Contact::CONTACT_IS_* to just plain Contact::* :-) (MrPetovan)
This commit is contained in:
parent
542370b6dd
commit
269dc07bef
3 changed files with 3 additions and 3 deletions
|
@ -1035,7 +1035,7 @@ function pumpio_get_contact($uid, $contact, $no_insert = false)
|
|||
DBA::escape($contact->preferredUsername),
|
||||
DBA::escape($contact->image->url),
|
||||
DBA::escape(NETWORK_PUMPIO),
|
||||
intval(Contact::CONTACT_IS_FRIEND),
|
||||
intval(Contact::FRIEND),
|
||||
intval(1),
|
||||
DBA::escape($contact->location->displayName),
|
||||
DBA::escape($contact->summary),
|
||||
|
|
|
@ -929,7 +929,7 @@ function statusnet_fetch_contact($uid, $contact, $create_user)
|
|||
DBA::escape($contact->screen_name),
|
||||
DBA::escape($contact->profile_image_url),
|
||||
DBA::escape(NETWORK_STATUSNET),
|
||||
intval(Contact::CONTACT_IS_FRIEND),
|
||||
intval(Contact::FRIEND),
|
||||
intval(1),
|
||||
DBA::escape($contact->location),
|
||||
DBA::escape($contact->description),
|
||||
|
|
|
@ -1029,7 +1029,7 @@ function twitter_fetch_contact($uid, $data, $create_user)
|
|||
$fields['nurl'] = normalise_link($url);
|
||||
$fields['alias'] = 'twitter::' . $data->id_str;
|
||||
$fields['poll'] = 'twitter::' . $data->id_str;
|
||||
$fields['rel'] = Contact::CONTACT_IS_FRIEND;
|
||||
$fields['rel'] = Contact::FRIEND;
|
||||
$fields['priority'] = 1;
|
||||
$fields['writable'] = true;
|
||||
$fields['blocked'] = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue