summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-04-23 07:07:55 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-04-23 07:07:55 +0000
commite10c466c422e98c901a3a6a40caff0aff018ab24 (patch)
tree3c65ed7853a9d5a7b60d23899e950b55212a278a /roundcubemail/program
parentd782dff87c2c89ce85ea3f215d6c90970c751308 (diff)
- Fix auto-complete function hangs with plus sign (#1485815)
git-svn-id: https://svn.roundcube.net/trunk@2415 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 627ddf5b6..43e0aa984 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -2568,7 +2568,7 @@ function rcube_webmail()
this.ksearch_value = q;
this.display_message(this.get_label('searching'), 'loading', true);
- this.http_post('autocomplete', '_search='+q);
+ this.http_post('autocomplete', '_search='+urlencode(q));
};
this.ksearch_query_results = function(results, search)