diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-02-17 16:23:30 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-02-17 16:23:30 +0100 |
commit | eafb68b32160c73646a6d067b9352d05ceaf5023 (patch) | |
tree | 77e70c08d1982e5775f482e6b107a51d5b64a3b5 /program/js/app.js | |
parent | 33dc8249fd7c9add67c874cec8d517a315e41dac (diff) |
- Fix regression in handling LDAP contact identifiers (#1488959)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 4ecbda706..65ad8a3c3 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4225,7 +4225,7 @@ function rcube_webmail() this.group_member_change('add', cid, dest, to.id); else { var lock = this.display_message(this.get_label('copyingcontact'), 'loading'), - post_data = {_cid: cid, _source: source, _to: dest, _togid: to.id, _gid: group}; + post_data = {_cid: cid, _source: this.env.source, _to: dest, _togid: to.id, _gid: group}; this.http_post('copy', post_data, lock); } @@ -4233,7 +4233,7 @@ function rcube_webmail() // target is an addressbook else if (to.id != source) { var lock = this.display_message(this.get_label('copyingcontact'), 'loading'), - post_data = {_cid: cid, _source: source, _to: to.id, _gid: group}; + post_data = {_cid: cid, _source: this.env.source, _to: to.id, _gid: group}; this.http_post('copy', post_data, lock); } |