summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/addressbook/func.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-25 11:48:50 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-25 11:48:50 +0000
commita3f4e43f6c042261551b7de9f916b8d4b034ad43 (patch)
tree553ce453885053fd96ed21bafb14d1c0d2666529 /roundcubemail/program/steps/addressbook/func.inc
parent290f4cc442269f79008553fd5f1b70d5784f4cdc (diff)
- Fixed display name on contact lists
git-svn-id: https://svn.roundcube.net/trunk@4965 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/addressbook/func.inc')
-rw-r--r--roundcubemail/program/steps/addressbook/func.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/addressbook/func.inc b/roundcubemail/program/steps/addressbook/func.inc
index f372c1c33..6b3ebad08 100644
--- a/roundcubemail/program/steps/addressbook/func.inc
+++ b/roundcubemail/program/steps/addressbook/func.inc
@@ -294,8 +294,13 @@ function rcmail_js_contacts_list($result, $prefix='')
}
// format each col
- foreach ($a_show_cols as $col)
- $a_row_cols[$col] = Q($row[$col]);
+ foreach ($a_show_cols as $col) {
+ $val = $row[$col];
+ if ($val == '' && $col == 'name') {
+ $val = rcube_addressbook::compose_display_name($row, true);
+ }
+ $a_row_cols[$col] = Q($val);
+ }
$OUTPUT->command($prefix.'add_contact_row', $row['ID'], $a_row_cols);
}