Thomas Bruederli
2012-07-26 baecd8becccd7786632c1cda895123293ceb1408
program/steps/addressbook/list.inc
@@ -19,6 +19,8 @@
 +-----------------------------------------------------------------------+
*/
$afields = $RCMAIL->config->get('contactlist_fields');
// Use search result
if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search']]))
{
@@ -43,7 +45,7 @@
        $source->set_search_set($set);
        // get records
        $result = $source->list_records(array('name', 'firstname', 'surname', 'email'));
        $result = $source->list_records($afields);
        while ($row = $result->next()) {
            $row['sourceid'] = $s;
@@ -73,7 +75,7 @@
    $CONTACTS = rcmail_contact_source(null, true);
    // get contacts for this user
    $result = $CONTACTS->list_records(array('name', 'firstname', 'surname', 'email'));
    $result = $CONTACTS->list_records($afields);
    if (!$result->count && $result->searchonly) {
        $OUTPUT->show_message('contactsearchonly', 'notice');