From 4dc22dd63417d6043489898d6ff9ac551c1b4231 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sat, 11 Feb 2012 08:50:04 -0500 Subject: [PATCH] Backported r5871 to 0.7 release branch --- program/steps/addressbook/func.inc | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index cb5cc63..caf964d 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -338,13 +338,9 @@ // format each col foreach ($a_show_cols as $col) { - $val = $row[$col]; - if ($val == '' && $col == 'name') { - $val = rcube_addressbook::compose_display_name($row, true); - } - + $val = $col == 'name' ? rcube_addressbook::compose_list_name($row) : $row[$col]; $a_row_cols[$col] = Q($val); - } + } $OUTPUT->command($prefix.'add_contact_row', $row['ID'], $a_row_cols); } -- Gitblit v1.9.1