diff options
author | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
commit | 4cf42fde05ff891f6961ba60dbb1c2e4c91c39c6 (patch) | |
tree | 75e1520d4dbf92a9b8c0ae9ab3136fa2623d4172 /program/steps/mail | |
parent | a71a97fa49fb1c7fbe5e042b2cf6239f7372acb4 (diff) |
Add support for read-only address book records
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/list_contacts.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/list_contacts.inc b/program/steps/mail/list_contacts.inc index eb425d2ba..6954e110a 100644 --- a/program/steps/mail/list_contacts.inc +++ b/program/steps/mail/list_contacts.inc @@ -45,7 +45,7 @@ if ($CONTACTS && $CONTACTS->ready) { $row_id = 'G'.$group['ID']; $jsresult[$row_id] = format_email_recipient($email, $group['name']); $OUTPUT->command('add_contact_row', $row_id, array( - 'contactgroup' => html::span(array('title' => $email), Q($group['name'])))); + 'contactgroup' => html::span(array('title' => $email), Q($group['name']))), 'group'); } } // show group with count @@ -53,7 +53,7 @@ if ($CONTACTS && $CONTACTS->ready) { $row_id = 'E'.$group['ID']; $jsresult[$row_id] = $group['name']; $OUTPUT->command('add_contact_row', $row_id, array( - 'contactgroup' => Q($group['name'] . ' (' . intval($result->count) . ')'))); + 'contactgroup' => Q($group['name'] . ' (' . intval($result->count) . ')')), 'group'); } } } @@ -75,7 +75,7 @@ if ($CONTACTS && $CONTACTS->ready) { $row_id = $row['ID'].$i; $jsresult[$row_id] = format_email_recipient($email, $name); $OUTPUT->command('add_contact_row', $row_id, array( - 'contact' => html::span(array('title' => $email), Q($name ? $name : $email)))); + 'contact' => html::span(array('title' => $email), Q($name ? $name : $email))), 'person'); } } } |