summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorThomas Bruederli <bruederli@kolabsys.com>2012-05-12 16:47:51 +0200
committerThomas Bruederli <bruederli@kolabsys.com>2012-05-12 16:47:51 +0200
commit5c6d1ac5a25550515a20b74c1986045127a87265 (patch)
tree46ccb174e481f842f2f18a5e9b27dd4cb2a435d7 /program/js
parent568e26c343e73d0d4e983342bf7b29bddb33715b (diff)
parent02cf44e1838aca64e14921d30dc44d25a4d73b1c (diff)
Merge branch 'release-0.8' of github.com:roundcube/roundcubemail into release-0.8
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 72a277797..cb2727523 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -766,7 +766,7 @@ function rcube_webmail()
case 'always-load':
if (this.env.uid && this.env.sender) {
- this.add_contact(urlencode(this.env.sender));
+ this.add_contact(this.env.sender);
setTimeout(function(){ ref.command('load-images'); }, 300);
break;
}
@@ -3527,7 +3527,7 @@ function rcube_webmail()
this.add_contact = function(value)
{
if (value)
- this.http_post('addcontact', '_address='+value);
+ this.http_post('addcontact', {_address: value});
return true;
};