diff options
author | alecpl <alec@alec.pl> | 2011-08-22 12:25:08 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-08-22 12:25:08 +0000 |
commit | 5db6f96d22b14651bc1a90413b57c96411249fb4 (patch) | |
tree | ed91cd00179ac292d736d13a2f4700ee0d6b9f30 /program/js | |
parent | c269b4958746db8e4f035536112e871387e3040d (diff) |
- Fix contact row update after name change when in searching mode, update changelog
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 6da5a578c..808adc575 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3997,12 +3997,19 @@ function rcube_webmail() }; // update a contact record in the list - this.update_contact_row = function(cid, cols_arr, newcid) + this.update_contact_row = function(cid, cols_arr, newcid, source) { var c, row, list = this.contact_list; cid = String(cid).replace(this.identifier_expr, '_'); + // when in searching mode, concat cid with the source name + if (!list.rows[cid]) { + cid = cid+'-'+source; + if (newcid) + newcid = newcid+'-'+source; + } + if (list.rows[cid] && (row = list.rows[cid].obj)) { for (c=0; c<cols_arr.length; c++) if (row.cells[c]) |