diff options
author | thomascube <thomas@roundcube.net> | 2012-03-14 08:27:18 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-14 08:27:18 +0000 |
commit | 168e5409239583343ae40695585aa8dbc276f740 (patch) | |
tree | b15683c369ef636652bf19b82d0c13b955e9de1d /program/steps/mail/list_contacts.inc | |
parent | ec318158ceb0fa3e52ee24eada5f7763779da238 (diff) |
Request all needed fields from address book backends (#1488394)
Diffstat (limited to 'program/steps/mail/list_contacts.inc')
-rw-r--r-- | program/steps/mail/list_contacts.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/list_contacts.inc b/program/steps/mail/list_contacts.inc index 0791ae350..eb425d2ba 100644 --- a/program/steps/mail/list_contacts.inc +++ b/program/steps/mail/list_contacts.inc @@ -60,7 +60,7 @@ if ($CONTACTS && $CONTACTS->ready) { // get contacts for this user $CONTACTS->set_group(0); - $result = $CONTACTS->list_records(array('name', 'email')); + $result = $CONTACTS->list_records(array('name', 'firstname', 'surname', 'email')); if (!$result->count && $result->searchonly) { $OUTPUT->show_message('contactsearchonly', 'notice'); |