diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-26 17:18:38 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-26 17:18:38 +0200 |
commit | baecd8becccd7786632c1cda895123293ceb1408 (patch) | |
tree | e33c882fe684e73fab73d77b1b16fe54ce9754ec /program/steps/mail/list_contacts.inc | |
parent | 5bc1233de808442f8d412bf4394fda05b22f41d2 (diff) |
Move the hard-coded list of fields used to list contacts to a central location
Diffstat (limited to 'program/steps/mail/list_contacts.inc')
-rw-r--r-- | program/steps/mail/list_contacts.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/mail/list_contacts.inc b/program/steps/mail/list_contacts.inc index 1a6480339..7c99a1309 100644 --- a/program/steps/mail/list_contacts.inc +++ b/program/steps/mail/list_contacts.inc @@ -57,7 +57,8 @@ if ($CONTACTS && $CONTACTS->ready) { // get contacts for this user $CONTACTS->set_group(0); - $result = $CONTACTS->list_records(array('name', 'firstname', 'surname', 'email')); + $afields = $RCMAIL->config->get('contactlist_fields'); + $result = $CONTACTS->list_records($afields); if (!$result->count && $result->searchonly) { $OUTPUT->show_message('contactsearchonly', 'notice'); |