Browse Source

Fix missing contact ID for contacts from non-sql addressbooks

pull/6833/head
Aleksander Machniak 9 years ago
parent
commit
1123f39cf4
  1. 2
      program/steps/mail/autocomplete.inc

2
program/steps/mail/autocomplete.inc

@ -96,7 +96,7 @@ if (!empty($book_types) && strlen($search)) {
$contact = array(
'name' => $contact,
'type' => $sql_arr['_type'],
'id' => $sql_arr['contact_id'],
'id' => $sql_arr['ID'],
'source' => $abook_id,
);

Loading…
Cancel
Save