Skip to content

Commit

Permalink
Display email address if contact has more than one (in compose addres…
Browse files Browse the repository at this point in the history
…s book widget)
  • Loading branch information
thomascube committed Oct 19, 2012
1 parent c96d3f5 commit 83f2f6b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions program/steps/mail/list_contacts.inc
Expand Up @@ -69,11 +69,14 @@ if ($CONTACTS && $CONTACTS->ready) {
$name = rcube_addressbook::compose_list_name($row);

// add record for every email address of the contact
foreach ($CONTACTS->get_col_values('email', $row, true) as $i => $email) {
$emails = $CONTACTS->get_col_values('email', $row, true);
foreach ($emails as $i => $email) {
$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))), 'person');
'contact' => html::span(array('title' => $email), Q($name ? $name : $email) .
($name && count($emails) > 1 ? ' ' . html::span('email', Q($email)) : '')
)), 'person');
}
}
}
Expand Down
7 changes: 7 additions & 0 deletions skins/larry/mail.css
Expand Up @@ -1104,6 +1104,13 @@ div.message-part blockquote blockquote blockquote {
display: block;
}

#contacts-table td span.email {
display: inline;
color: #69939e;
font-style: italic;
margin-left: 0.5em;
}

#compose-contacts li a, #contacts-table td {
background: url(images/listicons.png) -100px 0 no-repeat;
overflow: hidden;
Expand Down

0 comments on commit 83f2f6b

Please sign in to comment.