alecpl
2009-04-23 df781b53999f0656992929514a334867ab5b43af
- Fix auto-complete function hangs with plus sign (#1485815)


2 files modified
3 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 2 ●●● patch | view | raw | blame | history
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)
program/js/app.js
@@ -2568,7 +2568,7 @@
    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)