diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-23 07:07:55 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-23 07:07:55 +0000 |
| commit | e10c466c422e98c901a3a6a40caff0aff018ab24 (patch) | |
| tree | 3c65ed7853a9d5a7b60d23899e950b55212a278a | |
| parent | d782dff87c2c89ce85ea3f215d6c90970c751308 (diff) | |
- Fix auto-complete function hangs with plus sign (#1485815)
git-svn-id: https://svn.roundcube.net/trunk@2415 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 458886bca..f96d5905a 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix auto-complete function hangs with plus sign (#1485815) - Fix AJAX requests errors handler (#1485000) - Speed up message list displaying on IE - Fix read/write database recognition (#1485811) 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) |
