diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-02-13 15:09:29 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-02-13 15:09:29 +0100 |
commit | a0e86dcdeb201bb2422b3e4b8e249c2868f4c5ab (patch) | |
tree | 1a821087167c15555c13051999067e8377331f50 /program/steps | |
parent | 004f866f203cbca3fd9ed5547dd849da2d0882ff (diff) |
Fix updating contacts
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/addressbook/save.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/addressbook/save.inc b/program/steps/addressbook/save.inc index 901ea0190..7bd7da302 100644 --- a/program/steps/addressbook/save.inc +++ b/program/steps/addressbook/save.inc @@ -134,11 +134,11 @@ if (!empty($cid)) $record['email'] = reset($CONTACTS->get_col_values('email', $record, true)); $record['name'] = rcube_addressbook::compose_list_name($record); - foreach (array('name', 'email') as $col) + foreach (array('name') as $col) $a_js_cols[] = Q((string)$record[$col]); // update the changed col in list - $OUTPUT->command('parent.update_contact_row', $cid, $a_js_cols, $newcid, $source); + $OUTPUT->command('parent.update_contact_row', $cid, $a_js_cols, $newcid, $source, $record); // show confirmation $OUTPUT->show_message('successfullysaved', 'confirmation', null, false); |