diff options
author | alecpl <alec@alec.pl> | 2009-04-23 07:07:55 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-23 07:07:55 +0000 |
commit | df781b53999f0656992929514a334867ab5b43af (patch) | |
tree | 21e010f919a9de5a81fc9aa893a52187dd055371 /program/js | |
parent | 7a723522945b8954681171aa012b7ee1431a45cd (diff) |
- Fix auto-complete function hangs with plus sign (#1485815)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 627ddf5b6..43e0aa984 100644 --- a/program/js/app.js +++ b/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) |